diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-16 16:11:46 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-16 16:11:46 +0000 |
commit | e60cf11fb28b69028087626d626018640858cbad (patch) | |
tree | ae251c28fe403414bc49febf0ddb9db3c8088ea5 /lisp/term.el | |
parent | 2df2f9804a506257585ec1cec86ba493164e381c (diff) | |
download | emacs-e60cf11fb28b69028087626d626018640858cbad.tar.gz |
(term-replace-by-expanded-filename, term-prompt-regexp,
term-delimiter-argument-list): Fix spelling in docstrings.
Diffstat (limited to 'lisp/term.el')
-rw-r--r-- | lisp/term.el | 8 |
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 @@ :group 'term) (defvar term-prompt-regexp "^" - "Regexp to recognise prompts in the inferior process. + "Regexp to recognize prompts in the inferior process. Defaults to \"^\", the null string at BOL. Good choices: @@ -499,7 +499,7 @@ Good choices: This is a good thing to set in mode hooks.") (defvar term-delimiter-argument-list () - "List of characters to recognise as separate arguments in input. + "List of characters to recognize as separate arguments in input. Strings comprising a character in this list will separate the arguments surrounding them, and also be regarded as arguments in their own right (unlike whitespace). See `term-arguments'. @@ -3951,9 +3951,9 @@ See `term-dynamic-complete-filename'. Returns t if successful." (defun term-replace-by-expanded-filename () "Dynamically expand and complete the filename at point. -Replace the filename with an expanded, canonicalised and completed replacement. +Replace the filename with an expanded, canonicalized and completed replacement. \"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced -with the corresponding directories. \"Canonicalised\" means `..' and `.' are +with the corresponding directories. \"Canonicalized\" means `..' and `.' are removed, and the filename is made absolute instead of relative. For expansion see `expand-file-name' and `substitute-in-file-name'. For completion see `term-dynamic-complete-filename'." |