diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-11-01 01:24:33 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-11-01 01:24:33 +0000 |
commit | 6cda144ffe7e8da08b15430072f3b112967d5281 (patch) | |
tree | b1427bb1647e69581099a031db5321e6dc3b4b78 /lisp/cus-edit.el | |
parent | 322ca65006295d1d7d405188fa324f66b4d3ec17 (diff) | |
download | emacs-6cda144ffe7e8da08b15430072f3b112967d5281.tar.gz |
Fix typos in docstrings.
* cus-edit.el (customize-apropos-options, custom-comment)
(custom-comment-tag, custom-face-edit-attribute-tag):
Fix typos in docstrings.
(custom-buffer-done-kill): Remove * from defcustom docstring.
(custom-file): Fix typo in doc of defcustom choice.
* frame.el (display-visual-class): Fix typo in docstring.
(initial-frame-alist, minibuffer-frame-alist, pop-up-frame-alist)
(special-display-frame-alist, show-trailing-whitespace)
(auto-hscroll-mode, blink-cursor-delay, blink-cursor-interval)
(display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
Remove * from defcustom docstrings.
* md4.el (md4-buffer): Fix typo in docstring.
(md4, md4-64): Doc fixes.
(md4-pack-int32): Reflow docstring.
* paths.el (rmail-file-name): Remove * from defcustom docstring.
(prune-directory-list, gnus-nntp-service): Fix typos in docstrings.
* rect.el (open-rectangle): Reflow docstring.
(spaces-string): Fix docstring typo. Use "?\s" instead of "? ".
* select.el (x-get-cut-buffer): Fix typo in docstring.
* timezone.el (timezone-zone-to-minute, timezone-time-from-absolute)
(timezone-time-zone-from-absolute, timezone-leap-year-p):
Fix typos in docstrings.
* emacs-lisp/assoc.el (asort, aelement, aput, aget, amake):
Fix typos in docstrings.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r-- | lisp/cus-edit.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 2e322606d52..c32dba5bbe2 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -1426,7 +1426,7 @@ that are not customizable options, as well as faces and groups ;;;###autoload (defun customize-apropos-options (regexp &optional arg) "Customize all loaded customizable options matching REGEXP. -With prefix arg, include variables that are not customizable options +With prefix ARG, include variables that are not customizable options \(but it is better to use `apropos-variable' if you want to find those)." (interactive "sCustomize options (regexp): \nP") (customize-apropos regexp (or arg 'options))) @@ -1456,7 +1456,7 @@ links: groups have links to subgroups." :group 'custom-buffer) (defcustom custom-buffer-done-kill nil - "*Non-nil means exiting a Custom buffer should kill it." + "Non-nil means exiting a Custom buffer should kill it." :type 'boolean :version "22.1" :group 'custom-buffer) @@ -2363,7 +2363,7 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"." :background "dim gray") (t :slant italic)) - "Face used for comments on variables or faces" + "Face used for comments on variables or faces." :version "21.1" :group 'custom-faces) ;; backward-compatibility alias @@ -2378,7 +2378,7 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"." (((class grayscale) (background dark)) (:foreground "LightGray" :weight bold :slant italic)) (t (:weight bold))) - "Face used for variables or faces comment tags" + "Face used for variables or faces comment tags." :group 'custom-faces) ;; backward-compatibility alias (put 'custom-comment-tag-face 'face-alias 'custom-comment-tag) @@ -3115,7 +3115,7 @@ Also change :reverse-video to :inverse-video." (defun custom-face-edit-attribute-tag (widget) - "Returns the first :tag property in WIDGET or one of its children." + "Return the first :tag property in WIDGET or one of its children." (let ((tag (widget-get widget :tag))) (or (and (not (equal tag "")) tag) (let ((children (widget-get widget :children))) @@ -4230,7 +4230,7 @@ and hence will not set `custom-file' to that file either." :doc "Please read entire docstring below before setting \ this through Custom. -Click om \"More\" \(or position point there and press RETURN) +Click on \"More\" \(or position point there and press RETURN) if only the first line of the docstring is shown.")) :group 'customize) |