* facemenu.el (list-colors-display): Don't mark buffer as
modified (Bug#3948).
This commit is contained in:
parent
9bd79893e2
commit
c9349f0a05
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-10-31 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* facemenu.el (list-colors-display): Don't mark buffer as
|
||||
modified (Bug#3948).
|
||||
|
||||
2009-10-31 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* international/mule-diag.el (list-character-sets-1): Minor
|
||||
|
|
|
|||
|
|
@ -499,7 +499,11 @@ argument BUFFER-NAME is nil, it defaults to *Colors*."
|
|||
;; to get the right value of window-width in list-colors-print
|
||||
;; after the buffer is displayed.
|
||||
(add-hook 'temp-buffer-show-hook
|
||||
(lambda () (list-colors-print list)) nil t)))))
|
||||
(lambda ()
|
||||
(set-buffer-modified-p
|
||||
(prog1 (buffer-modified-p)
|
||||
(list-colors-print list))))
|
||||
nil t)))))
|
||||
|
||||
(defun list-colors-print (list)
|
||||
(dolist (color list)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue