aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorJuanma Barranquero2008-07-03 15:18:32 +0000
committerJuanma Barranquero2008-07-03 15:18:32 +0000
commit92439579f3a00655358f48ea64b8fb142bfda1b6 (patch)
tree7cc696b514cdca4b976905ac56b5a0734ca48777 /lisp/eshell
parent10545bd83d3b5c7f6082d56a59449ff1eddae2ff (diff)
downloademacs-92439579f3a00655358f48ea64b8fb142bfda1b6.tar.gz
emacs-92439579f3a00655358f48ea64b8fb142bfda1b6.zip
Typos, doc fixes, etc.
* eshell/esh-arg.el (eshell-quote-backslash): Fix typo in docstring. (eshell-parse-argument-hook, eshell-special-chars-inside-quoting) (eshell-arg-load-hook, eshell-special-chars-outside-quoting): Remove spurious * in defcustom docstrings. * textmodes/fill.el (fill-paragraph): Fix typo in docstring. (fill-individual-varying-indent, colon-double-space, enable-kinsoku) (adaptive-fill-mode, adaptive-fill-first-line-regexp) (default-justification): Remove spurious * in defcustom docstrings. * textmodes/rst.el (rst, rst-line-homogeneous-p, rst-mode-abbrev-table) (rst-font-lock-keywords-function, rst-mode, rst-minor-mode) (rst-compare-decorations, rst-default-indent, rst-update-section) (rst-decoration-complete-p, rst-section-tree, rst-toc-insert-node) (rst-toc-insert-find-delete-contents, rst-toc-count-lines) (rst-toc-mode-goto-section, rst-faces, rst-level-face-base-color): Fix typos in docstrings. (rst-mode-lazy): Fix typo in docstring. Remove spurious *. (rst-adjust, rst-line-homogeneous-p, rst-suggest-new-decoration) (rst-get-decorations-around, rst-section-tree-point) (rst-font-lock-adornment-point): Reflow docstrings. (rst-get-decoration, rst-get-decoration-match, rst-adjust-decoration): Doc fixes. (rst-re-enumerations): Comment out.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-arg.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/eshell/esh-arg.el b/lisp/eshell/esh-arg.el
index 922ac6bb0bd..7e86772e797 100644
--- a/lisp/eshell/esh-arg.el
+++ b/lisp/eshell/esh-arg.el
@@ -101,7 +101,7 @@ yield the values intended."
101 101
102 ;; argument delimiter 102 ;; argument delimiter
103 'eshell-parse-delimiter) 103 'eshell-parse-delimiter)
104 "*Define how to process Eshell command line arguments. 104 "Define how to process Eshell command line arguments.
105When each function on this hook is called, point will be at the 105When each function on this hook is called, point will be at the
106current position within the argument list. The function should either 106current position within the argument list. The function should either
107return nil, meaning that it did no argument parsing, or it should 107return nil, meaning that it did no argument parsing, or it should
@@ -119,7 +119,7 @@ treated as a literal character."
119;;; User Variables: 119;;; User Variables:
120 120
121(defcustom eshell-arg-load-hook '(eshell-arg-initialize) 121(defcustom eshell-arg-load-hook '(eshell-arg-initialize)
122 "*A hook that gets run when `eshell-arg' is loaded." 122 "A hook that gets run when `eshell-arg' is loaded."
123 :type 'hook 123 :type 'hook
124 :group 'eshell-arg) 124 :group 'eshell-arg)
125 125
@@ -129,13 +129,13 @@ treated as a literal character."
129 :group 'eshell-arg) 129 :group 'eshell-arg)
130 130
131(defcustom eshell-special-chars-inside-quoting '(?\\ ?\") 131(defcustom eshell-special-chars-inside-quoting '(?\\ ?\")
132 "*Characters which are still special inside double quotes." 132 "Characters which are still special inside double quotes."
133 :type '(repeat character) 133 :type '(repeat character)
134 :group 'eshell-arg) 134 :group 'eshell-arg)
135 135
136(defcustom eshell-special-chars-outside-quoting 136(defcustom eshell-special-chars-outside-quoting
137 (append eshell-delimiter-argument-list '(?# ?! ?\\ ?\" ?\')) 137 (append eshell-delimiter-argument-list '(?# ?! ?\\ ?\" ?\'))
138 "*Characters that require escaping outside of double quotes. 138 "Characters that require escaping outside of double quotes.
139Without escaping them, they will introduce a change in the argument." 139Without escaping them, they will introduce a change in the argument."
140 :type '(repeat character) 140 :type '(repeat character)
141 :group 'eshell-arg) 141 :group 'eshell-arg)
@@ -279,7 +279,7 @@ Point is left at the end of the arguments."
279 (= (+ pos 2) (point-max)))))) 279 (= (+ pos 2) (point-max))))))
280 280
281(defun eshell-quote-backslash (string &optional index) 281(defun eshell-quote-backslash (string &optional index)
282 "Intelligently backslash the character occuring in STRING at INDEX. 282 "Intelligently backslash the character occurring in STRING at INDEX.
283If the character is itself a backslash, it needs no escaping." 283If the character is itself a backslash, it needs no escaping."
284 (let ((char (aref string index))) 284 (let ((char (aref string index)))
285 (if (eq char ?\\) 285 (if (eq char ?\\)