summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2003-01-29 21:45:56 +0000
committerJohn Paul Wallington <jpw@pobox.com>2003-01-29 21:45:56 +0000
commite2cd29bdb4ab9ebcc99e136108f3f156577c9541 (patch)
tree45a756056c3496b17e870b591e0709b1ced7f605 /lisp/custom.el
parentee1f522d4efd1efd6b74c06830c61a5837754621 (diff)
downloademacs-e2cd29bdb4ab9ebcc99e136108f3f156577c9541.tar.gz
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
* emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for `deftheme'. Fix docstring offsets for `define-ibuffer-filter' and `define-ibuffer-sorter'. (lisp-imenu-generic-expression): Add `deftheme' to types. * custom.el (customize-mark-to-save, customize-mark-as-set) (custom-remove-theme): Doc fixes.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index a4a496c0bef..b3458bfce41 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -817,7 +817,7 @@ this sets the local binding in that buffer instead."
If the default value of SYMBOL is different from the standard value,
set the `saved-value' property to a list whose car evaluates to the
-default value. Otherwise, set it til nil.
+default value. Otherwise, set it to nil.
To actually save the value, call `custom-save-all'.
@@ -847,7 +847,7 @@ Return non-nil iff the `saved-value' property actually changed."
If the default value of SYMBOL is different from the saved value if any,
or else if it is different from the standard value, set the
`customized-value' property to a list whose car evaluates to the
-default value. Otherwise, set it til nil.
+default value. Otherwise, set it to nil.
Return non-nil iff the `customized-value' property actually changed."
(let* ((get (or (get symbol 'custom-get) 'default-value))
@@ -896,7 +896,7 @@ by `custom-make-theme-feature'."
(custom-make-theme-feature theme))))
(defun custom-remove-theme (spec-alist theme)
- "Detelete all elements from SPEC-ALIST whose car is THEME."
+ "Delete all elements from SPEC-ALIST whose car is THEME."
(let ((elt (assoc theme spec-alist)))
(while elt
(setq spec-alist (delete elt spec-alist)