Changeset 4169 for trunk/lisp/cus-edit.el
- Timestamp:
- 09/30/06 09:12:06 (2 years ago)
- Files:
-
- trunk/lisp (modified) (1 prop)
- trunk/lisp/cus-edit.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp
- Property svn:ignore changed from
*.elc
MANIFEST
Makefile
Makefile.unix
makefile
elc.tar.gz
cus-load.el
finder-inf.el
subdirs.el
loaddefs.el
to
*.elc
MANIFEST
Makefile
Makefile.unix
makefile
elc.tar.gz
cus-load.el
finder-inf.el
subdirs.el
loaddefs.el
pre-mh-loaddefs.el-CMD
- Property svn:ignore changed from
trunk/lisp/cus-edit.el
r4166 r4169 1522 1522 (widget-insert (format ". 1523 1523 %s buttons; type RET or click mouse-1 to actuate one. 1524 Editing a setting changes only the text in the buffer. 1525 Use the setting's State button to set it or save changes in it. 1526 Saving a change normally works by editing your Emacs init file. 1527 See " 1524 Editing a setting changes only the text in the buffer." 1528 1525 (if custom-raised-buttons 1529 1526 "`Raised' text indicates" 1530 1527 "Square brackets indicate"))) 1528 (if init-file-user 1529 (widget-insert " 1530 Use the setting's State button to set it or save changes in it. 1531 Saving a change normally works by editing your Emacs init file.") 1532 (widget-insert " 1533 \nSince you started Emacs with `-q', which inhibits use of the 1534 Emacs init file, you cannot save settings into the Emacs init file.")) 1535 (widget-insert "\nSee ") 1531 1536 (widget-create 'custom-manual 1532 1537 :tag "Custom file" … … 4153 4158 (old-buffer (find-buffer-visiting filename))) 4154 4159 (with-current-buffer (or old-buffer (find-file-noselect filename)) 4160 (unless (eq major-mode 'emacs-lisp-mode) 4161 (emacs-lisp-mode)) 4155 4162 (let ((inhibit-read-only t)) 4156 4163 (custom-save-variables)
