diff options
| author | Dave Love | 1999-11-29 23:03:09 +0000 |
|---|---|---|
| committer | Dave Love | 1999-11-29 23:03:09 +0000 |
| commit | aec2bb6375a017e3cadc9c8030ef8f9dec4ce3b0 (patch) | |
| tree | 7ebcbbe78da2847b2d60265da153ed15378b5327 | |
| parent | e33b0397a28e960f38fc7ecb19494ff6cc1e3390 (diff) | |
| download | emacs-aec2bb6375a017e3cadc9c8030ef8f9dec4ce3b0.tar.gz emacs-aec2bb6375a017e3cadc9c8030ef8f9dec4ce3b0.zip | |
(custom-save-variables, custom-save-faces): Write a
comment warning about editing.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e28de1d3b37..0babf162220 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 1999-11-29 Dave Love <fx@gnu.org> | 1 | 1999-11-29 Dave Love <fx@gnu.org> |
| 2 | 2 | ||
| 3 | * cus-edit.el (custom-save-variables, custom-save-faces): Write a | ||
| 4 | comment warning about editing. | ||
| 5 | |||
| 6 | 1999-11-29 Dave Love <fx@gnu.org> | ||
| 7 | |||
| 3 | * help.el (help-mode-hook): Define. | 8 | * help.el (help-mode-hook): Define. |
| 4 | 9 | ||
| 5 | 1999-11-29 Gerd Moellmann <gerd@gnu.org> | 10 | 1999-11-29 Gerd Moellmann <gerd@gnu.org> |
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 146122c31da..17505d8f689 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -3395,7 +3395,9 @@ Leave point at the location of the call, or after the last expression." | |||
| 3395 | (setq saved-list (sort (cdr saved-list) 'string<)) | 3395 | (setq saved-list (sort (cdr saved-list) 'string<)) |
| 3396 | (unless (bolp) | 3396 | (unless (bolp) |
| 3397 | (princ "\n")) | 3397 | (princ "\n")) |
| 3398 | (princ "(custom-set-variables") | 3398 | (princ "(custom-set-variables |
| 3399 | ;; custom-set-variables was added by Custom -- don't edit or cut/paste it! | ||
| 3400 | ;; Your init file must only contain one such instance.") | ||
| 3399 | (mapcar | 3401 | (mapcar |
| 3400 | (lambda (symbol) | 3402 | (lambda (symbol) |
| 3401 | (let ((value (get symbol 'saved-value)) | 3403 | (let ((value (get symbol 'saved-value)) |
| @@ -3453,7 +3455,9 @@ Leave point at the location of the call, or after the last expression." | |||
| 3453 | (setq saved-list (cons 'default (delq 'default saved-list)))) | 3455 | (setq saved-list (cons 'default (delq 'default saved-list)))) |
| 3454 | (unless (bolp) | 3456 | (unless (bolp) |
| 3455 | (princ "\n")) | 3457 | (princ "\n")) |
| 3456 | (princ "(custom-set-faces") | 3458 | (princ "(custom-set-faces |
| 3459 | ;; custom-set-faces was added by Custom -- don't edit or cut/paste it! | ||
| 3460 | ;; Your init file must only contain one such instance.") | ||
| 3457 | (mapcar | 3461 | (mapcar |
| 3458 | (lambda (symbol) | 3462 | (lambda (symbol) |
| 3459 | (let ((value (get symbol 'saved-face)) | 3463 | (let ((value (get symbol 'saved-face)) |