aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-16 16:06:10 +0000
committerJuanma Barranquero2005-06-16 16:06:10 +0000
commit3e60322017fba560fcfc402ef4202e4c69a918f1 (patch)
tree8273adea409e62787d5aa77a5c8bdc238d04778c
parentdf9b6d77fe6880565dbe453c8271803bee39f5b5 (diff)
downloademacs-3e60322017fba560fcfc402ef4202e4c69a918f1.tar.gz
emacs-3e60322017fba560fcfc402ef4202e4c69a918f1.zip
(comint-replace-by-expanded-filename, comint-prompt-regexp,
comint-delimiter-argument-list, comint-preinput-scroll-to-bottom): Fix spelling in docstrings.
-rw-r--r--lisp/comint.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 14913c7ef11..29208d6379c 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -155,7 +155,7 @@
155 :group 'comint) 155 :group 'comint)
156 156
157(defvar comint-prompt-regexp "^" 157(defvar comint-prompt-regexp "^"
158 "Regexp to recognise prompts in the inferior process. 158 "Regexp to recognize prompts in the inferior process.
159Defaults to \"^\", the null string at BOL. 159Defaults to \"^\", the null string at BOL.
160 160
161This variable is only used if the variable 161This variable is only used if the variable
@@ -197,7 +197,7 @@ you might wish to use another binding for `comint-kill-whole-line'."
197 :version "22.1") 197 :version "22.1")
198 198
199(defvar comint-delimiter-argument-list () 199(defvar comint-delimiter-argument-list ()
200 "List of characters to recognise as separate arguments in input. 200 "List of characters to recognize as separate arguments in input.
201Strings comprising a character in this list will separate the arguments 201Strings comprising a character in this list will separate the arguments
202surrounding them, and also be regarded as arguments in their own right (unlike 202surrounding them, and also be regarded as arguments in their own right (unlike
203whitespace). See `comint-arguments'. 203whitespace). See `comint-arguments'.
@@ -1760,7 +1760,7 @@ Make backspaces delete the previous character."
1760(defun comint-preinput-scroll-to-bottom () 1760(defun comint-preinput-scroll-to-bottom ()
1761 "Go to the end of buffer in all windows showing it. 1761 "Go to the end of buffer in all windows showing it.
1762Movement occurs if point in the selected window is not after the process mark, 1762Movement occurs if point in the selected window is not after the process mark,
1763and `this-command' is an insertion command. Insertion commands recognised 1763and `this-command' is an insertion command. Insertion commands recognized
1764are `self-insert-command', `comint-magic-space', `yank', and `hilit-yank'. 1764are `self-insert-command', `comint-magic-space', `yank', and `hilit-yank'.
1765Depends on the value of `comint-scroll-to-bottom-on-input'. 1765Depends on the value of `comint-scroll-to-bottom-on-input'.
1766 1766
@@ -2789,9 +2789,9 @@ See `comint-dynamic-complete-filename'. Returns t if successful."
2789 2789
2790(defun comint-replace-by-expanded-filename () 2790(defun comint-replace-by-expanded-filename ()
2791 "Dynamically expand and complete the filename at point. 2791 "Dynamically expand and complete the filename at point.
2792Replace the filename with an expanded, canonicalised and completed replacement. 2792Replace the filename with an expanded, canonicalized and completed replacement.
2793\"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced 2793\"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced
2794with the corresponding directories. \"Canonicalised\" means `..' and `.' are 2794with the corresponding directories. \"Canonicalized\" means `..' and `.' are
2795removed, and the filename is made absolute instead of relative. For expansion 2795removed, and the filename is made absolute instead of relative. For expansion
2796see `expand-file-name' and `substitute-in-file-name'. For completion see 2796see `expand-file-name' and `substitute-in-file-name'. For completion see
2797`comint-dynamic-complete-filename'." 2797`comint-dynamic-complete-filename'."