GNU bug report logs -
#14719
24.3; Crashing when setting frames to random colors
Previous Next
Reported by: Steve Wainstead <swain <at> socialserve.com>
Date: Tue, 25 Jun 2013 22:12:02 UTC
Severity: normal
Tags: unreproducible
Found in version 24.3
Done: Alan Third <alan <at> idiocy.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Reading more of the Lisp code I use when compiling I thought posting all of it might be more helpful. All of this and more is in a GitHub repository:
https://github.com/wainstead/swainlisp
;; save *compilation* buffer to file
;; git commit it right after
(defun sw-write-compilation-buffer()
"Hook function to write the *compilation* buffer for each compile."
(and (get-buffer "*compilation*") (sw-save-buffer-invisibly (get-buffer "*compilation*")))
(shell-command "cd ~swain/.emacs.shellbuffers; git commit -m \"saving last compilation\" ?compilation?")
)
;; every time the "compile" or "recompile" functions are run, write
;; out the *compilation* buffer's contents and commit it.
(defadvice compile (before sw-save-last-compilation activate compile)
"Every time we compile, save the previous compilation to the
~/.emacs.shellbuffers directory and git commit it."
;; if we are in the frame holding the compilation buffer, don't switch frames.
(and (not(string= (buffer-name) "*compilation*")) (switch-to-buffer-other-frame "*compilation*"))
(sw-write-compilation-buffer)
(sw-randomize-frame-colors)
)
(defadvice recompile (before sw-save-last-compilation activate compile)
"Every time we compile, save the previous compilation to the
~/.emacs.shellbuffers directory and git commit it."
(and (not(string= (buffer-name) "*compilation*")) (switch-to-buffer-other-frame "*compilation*"))
(sw-write-compilation-buffer)
(sw-randomize-frame-colors)
)
;; choose random colors every time we compile, just for fun
(defun sw-make-random-hex-color-string ()
"Return a string in the form of #FFFFFF. Choose the number for
#xffffff randomly using Emacs Lisp's builtin function (random)."
;; seed our random number generator: current datetime plus Emacs's
;; process ID
(random t)
(format "#%06x" (random #xffffff))
)
(defun sw-randomize-frame-colors ()
"Change foreground and background colors of the current frame to
random colors."
(interactive)
(let
(
(fg-color (sw-make-random-hex-color-string))
(bg-color (sw-make-random-hex-color-string))
(color-distance #x3fffff)
)
(set-foreground-color fg-color)
(set-background-color bg-color)
)
)
This bug report was last modified 7 years and 332 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.