aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-16 16:11:46 +0000
committerJuanma Barranquero2005-06-16 16:11:46 +0000
commite60cf11fb28b69028087626d626018640858cbad (patch)
treeae251c28fe403414bc49febf0ddb9db3c8088ea5
parent2df2f9804a506257585ec1cec86ba493164e381c (diff)
downloademacs-e60cf11fb28b69028087626d626018640858cbad.tar.gz
emacs-e60cf11fb28b69028087626d626018640858cbad.zip
(term-replace-by-expanded-filename, term-prompt-regexp,
term-delimiter-argument-list): Fix spelling in docstrings.
-rw-r--r--lisp/term.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 00c1083892e..b7d2d4c59b0 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -485,7 +485,7 @@
485 :group 'term) 485 :group 'term)
486 486
487(defvar term-prompt-regexp "^" 487(defvar term-prompt-regexp "^"
488 "Regexp to recognise prompts in the inferior process. 488 "Regexp to recognize prompts in the inferior process.
489Defaults to \"^\", the null string at BOL. 489Defaults to \"^\", the null string at BOL.
490 490
491Good choices: 491Good choices:
@@ -499,7 +499,7 @@ Good choices:
499This is a good thing to set in mode hooks.") 499This is a good thing to set in mode hooks.")
500 500
501(defvar term-delimiter-argument-list () 501(defvar term-delimiter-argument-list ()
502 "List of characters to recognise as separate arguments in input. 502 "List of characters to recognize as separate arguments in input.
503Strings comprising a character in this list will separate the arguments 503Strings comprising a character in this list will separate the arguments
504surrounding them, and also be regarded as arguments in their own right (unlike 504surrounding them, and also be regarded as arguments in their own right (unlike
505whitespace). See `term-arguments'. 505whitespace). See `term-arguments'.
@@ -3951,9 +3951,9 @@ See `term-dynamic-complete-filename'. Returns t if successful."
3951 3951
3952(defun term-replace-by-expanded-filename () 3952(defun term-replace-by-expanded-filename ()
3953 "Dynamically expand and complete the filename at point. 3953 "Dynamically expand and complete the filename at point.
3954Replace the filename with an expanded, canonicalised and completed replacement. 3954Replace the filename with an expanded, canonicalized and completed replacement.
3955\"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced 3955\"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced
3956with the corresponding directories. \"Canonicalised\" means `..' and `.' are 3956with the corresponding directories. \"Canonicalized\" means `..' and `.' are
3957removed, and the filename is made absolute instead of relative. For expansion 3957removed, and the filename is made absolute instead of relative. For expansion
3958see `expand-file-name' and `substitute-in-file-name'. For completion see 3958see `expand-file-name' and `substitute-in-file-name'. For completion see
3959`term-dynamic-complete-filename'." 3959`term-dynamic-complete-filename'."