diff options
| author | Dan Nicolaescu | 2009-11-11 06:12:21 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 06:12:21 +0000 |
| commit | af89cf775938a950664dcfba4241f497014edf7e (patch) | |
| tree | f70f3358a31625bf829de109b8fd997f7128359c | |
| parent | a4ada374d6f96b5a7b9fe8df57307fae3fcd3351 (diff) | |
| download | emacs-af89cf775938a950664dcfba4241f497014edf7e.tar.gz emacs-af89cf775938a950664dcfba4241f497014edf7e.zip | |
(custom-declare-group): Purecopy load-file-name.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/custom.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c63187e92b2..1f0ddc1217a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * custom.el (custom-declare-group): Purecopy load-file-name. | ||
| 4 | |||
| 3 | * subr.el (menu-bar-separator): New defconst. | 5 | * subr.el (menu-bar-separator): New defconst. |
| 4 | * net/eudc.el (eudc-tools-menu): | 6 | * net/eudc.el (eudc-tools-menu): |
| 5 | * international/mule-cmds.el (set-coding-system-map) | 7 | * international/mule-cmds.el (set-coding-system-map) |
diff --git a/lisp/custom.el b/lisp/custom.el index b8021bf1df6..b9988530e3c 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -414,7 +414,8 @@ for more information." | |||
| 414 | ;; Record the group on the `current' list. | 414 | ;; Record the group on the `current' list. |
| 415 | (let ((elt (assoc load-file-name custom-current-group-alist))) | 415 | (let ((elt (assoc load-file-name custom-current-group-alist))) |
| 416 | (if elt (setcdr elt symbol) | 416 | (if elt (setcdr elt symbol) |
| 417 | (push (cons load-file-name symbol) custom-current-group-alist))) | 417 | (push (cons (purecopy load-file-name) symbol) |
| 418 | custom-current-group-alist))) | ||
| 418 | (run-hooks 'custom-define-hook) | 419 | (run-hooks 'custom-define-hook) |
| 419 | symbol) | 420 | symbol) |
| 420 | 421 | ||