summaryrefslogtreecommitdiff
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2002-11-11 10:51:58 +0000
committerJuanma Barranquero <lekktu@gmail.com>2002-11-11 10:51:58 +0000
commit2302ee3426e35082ecbf442571a3d9fb1b7b9560 (patch)
treec0c2450ba1c4d31a1b51fdfe0189ea385a73cad4 /lisp/cus-edit.el
parent98b4e102f8f62a9b157d1356b1232885632ee063 (diff)
downloademacs-2302ee3426e35082ecbf442571a3d9fb1b7b9560.tar.gz
(custom-save-delete): Force emacs-lisp-mode.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 366061a7e59..71709cd7234 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -3649,7 +3649,7 @@ to the new custom file. This will preserve your existing customizations."
"Visit `custom-file' and delete all calls to SYMBOL from it.
Leave point at the old location of the first such call,
or (if there were none) at the end of the buffer."
- (let ((default-major-mode))
+ (let ((default-major-mode 'emacs-lisp-mode))
(set-buffer (find-file-noselect (custom-file))))
(goto-char (point-min))
;; Skip all whitespace and comments.