diff options
| author | Juanma Barranquero | 2005-06-16 16:11:46 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-16 16:11:46 +0000 |
| commit | e60cf11fb28b69028087626d626018640858cbad (patch) | |
| tree | ae251c28fe403414bc49febf0ddb9db3c8088ea5 | |
| parent | 2df2f9804a506257585ec1cec86ba493164e381c (diff) | |
| download | emacs-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.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 @@ | |||
| 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. |
| 489 | Defaults to \"^\", the null string at BOL. | 489 | Defaults to \"^\", the null string at BOL. |
| 490 | 490 | ||
| 491 | Good choices: | 491 | Good choices: |
| @@ -499,7 +499,7 @@ Good choices: | |||
| 499 | This is a good thing to set in mode hooks.") | 499 | This 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. |
| 503 | Strings comprising a character in this list will separate the arguments | 503 | Strings comprising a character in this list will separate the arguments |
| 504 | surrounding them, and also be regarded as arguments in their own right (unlike | 504 | surrounding them, and also be regarded as arguments in their own right (unlike |
| 505 | whitespace). See `term-arguments'. | 505 | whitespace). 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. |
| 3954 | Replace the filename with an expanded, canonicalised and completed replacement. | 3954 | Replace 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 |
| 3956 | with the corresponding directories. \"Canonicalised\" means `..' and `.' are | 3956 | with the corresponding directories. \"Canonicalized\" means `..' and `.' are |
| 3957 | removed, and the filename is made absolute instead of relative. For expansion | 3957 | removed, and the filename is made absolute instead of relative. For expansion |
| 3958 | see `expand-file-name' and `substitute-in-file-name'. For completion see | 3958 | see `expand-file-name' and `substitute-in-file-name'. For completion see |
| 3959 | `term-dynamic-complete-filename'." | 3959 | `term-dynamic-complete-filename'." |