]> git.eshelyaron.com Git - emacs.git/commitdiff
(term-replace-by-expanded-filename, term-prompt-regexp,
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 16:11:46 +0000 (16:11 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 16:11:46 +0000 (16:11 +0000)
term-delimiter-argument-list): Fix spelling in docstrings.

lisp/term.el

index 00c1083892e998df04aec386058e134c844dd04f..b7d2d4c59b03ae0446a95c9ec83440704a28f05a 100644 (file)
   :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'."