aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-06 22:37:30 +0000
committerJuanma Barranquero2006-11-06 22:37:30 +0000
commitc8c9333c69c41cb5605d32d86ef6fa24a8b7afc5 (patch)
tree6724b7e97c2a5bacc57e31d63edaf3cd90dcc1c0
parent32ef9469741164c43a93204e2372f8425ee7ca0d (diff)
downloademacs-c8c9333c69c41cb5605d32d86ef6fa24a8b7afc5.tar.gz
emacs-c8c9333c69c41cb5605d32d86ef6fa24a8b7afc5.zip
(hook): Fix typos in docstring.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/cus-edit.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e5742663d94..62c08150d75 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-11-06 Juanma Barranquero <lekktu@gmail.com>
2
3 * international/ja-dic-cnv.el (skkdic-convert):
4 * cus-edit.el (hook): Fix typo in docstring.
5
12006-11-06 Chong Yidong <cyd@stupidchicken.com> 62006-11-06 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * cus-edit.el (custom-mode-map): Move defvar above code using it. 8 * cus-edit.el (custom-mode-map): Move defvar above code using it.
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 26d44ee3c3f..af4cc43daec 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -3664,7 +3664,7 @@ restoring it to the state of a face that has never been customized."
3664;;; The `hook' Widget. 3664;;; The `hook' Widget.
3665 3665
3666(define-widget 'hook 'list 3666(define-widget 'hook 'list
3667 "An emacs lisp hook." 3667 "An Emacs Lisp hook."
3668 :value-to-internal (lambda (widget value) 3668 :value-to-internal (lambda (widget value)
3669 (if (and value (symbolp value)) 3669 (if (and value (symbolp value))
3670 (list value) 3670 (list value)
@@ -4304,7 +4304,7 @@ This function does not save the buffer."
4304 (eq (get symbol 'force-value) 4304 (eq (get symbol 'force-value)
4305 'rogue)))) 4305 'rogue))))
4306 (comment (get symbol 'saved-variable-comment))) 4306 (comment (get symbol 'saved-variable-comment)))
4307 ;; Check REQUESTS for validity. 4307 ;; Check REQUESTS for validity.
4308 (dolist (request requests) 4308 (dolist (request requests)
4309 (when (and (symbolp request) (not (featurep request))) 4309 (when (and (symbolp request) (not (featurep request)))
4310 (message "Unknown requested feature: %s" request) 4310 (message "Unknown requested feature: %s" request)