diff options
| author | Karl Heuer | 1996-01-04 23:20:49 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-04 23:20:49 +0000 |
| commit | a4cc06e29d29112132c212490c3560e1eb56482e (patch) | |
| tree | c7c91a80bdd056ea81a09608e993e0d8c954b868 | |
| parent | 1f238ac240ba58929ca09b026145d671a2b9ba32 (diff) | |
| download | emacs-a4cc06e29d29112132c212490c3560e1eb56482e.tar.gz emacs-a4cc06e29d29112132c212490c3560e1eb56482e.zip | |
(term-process-pager): Fix message spelling.
| -rw-r--r-- | lisp/term.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/term.el b/lisp/term.el index e9c2d6dbbfc..bca6e99ce0d 100644 --- a/lisp/term.el +++ b/lisp/term.el | |||
| @@ -293,7 +293,7 @@ Do not change it directly; use term-set-escape-char instead.") | |||
| 293 | 293 | ||
| 294 | (defvar term-ptyp t | 294 | (defvar term-ptyp t |
| 295 | "True if communications via pty; false if by pipe. Buffer local. | 295 | "True if communications via pty; false if by pipe. Buffer local. |
| 296 | This is to work around a bug in emacs process signalling.") | 296 | This is to work around a bug in emacs process signaling.") |
| 297 | 297 | ||
| 298 | (defvar term-last-input-match "" | 298 | (defvar term-last-input-match "" |
| 299 | "Last string searched for by term input history search, for defaulting. | 299 | "Last string searched for by term input history search, for defaulting. |
| @@ -698,7 +698,7 @@ without any interpretation." | |||
| 698 | (define-key term-raw-map term-escape-char 'term-send-raw)) | 698 | (define-key term-raw-map term-escape-char 'term-send-raw)) |
| 699 | (setq c (make-string 1 c)) | 699 | (setq c (make-string 1 c)) |
| 700 | (define-key term-raw-map c term-raw-escape-map) | 700 | (define-key term-raw-map c term-raw-escape-map) |
| 701 | ;; Define standard binings in term-raw-escape-map | 701 | ;; Define standard bindings in term-raw-escape-map |
| 702 | (define-key term-raw-escape-map "\C-x" | 702 | (define-key term-raw-escape-map "\C-x" |
| 703 | (lookup-key (current-global-map) "\C-x")) | 703 | (lookup-key (current-global-map) "\C-x")) |
| 704 | (define-key term-raw-escape-map "\C-v" | 704 | (define-key term-raw-escape-map "\C-v" |
| @@ -861,7 +861,7 @@ buffer. The hook term-exec-hook is run after each exec." | |||
| 861 | :so=\\E[7m:se=\\E[m:us=\\E[4m:ue=\\E[m:md=\\E[1m:mr=\\E[7m:me=\\E[m\ | 861 | :so=\\E[7m:se=\\E[m:us=\\E[4m:ue=\\E[m:md=\\E[1m:mr=\\E[7m:me=\\E[m\ |
| 862 | :UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC" | 862 | :UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC" |
| 863 | ;;; : -undefine ic | 863 | ;;; : -undefine ic |
| 864 | "termcap capabilties supported") | 864 | "termcap capabilities supported") |
| 865 | 865 | ||
| 866 | ;;; This auxiliary function cranks up the process for term-exec in | 866 | ;;; This auxiliary function cranks up the process for term-exec in |
| 867 | ;;; the appropriate environment. | 867 | ;;; the appropriate environment. |
| @@ -1984,7 +1984,7 @@ See `term-prompt-regexp'." | |||
| 1984 | (let ((H) | 1984 | (let ((H) |
| 1985 | (todo (+ count (/ (current-column) term-width)))) | 1985 | (todo (+ count (/ (current-column) term-width)))) |
| 1986 | (end-of-line) | 1986 | (end-of-line) |
| 1987 | ;; The loop interates over buffer lines; | 1987 | ;; The loop iterates over buffer lines; |
| 1988 | ;; H is the number of screen lines in the current line, i.e. | 1988 | ;; H is the number of screen lines in the current line, i.e. |
| 1989 | ;; the ceiling of dividing the buffer line width by term-width. | 1989 | ;; the ceiling of dividing the buffer line width by term-width. |
| 1990 | (while (and (<= (setq H (max (/ (+ (current-column) term-width -1) | 1990 | (while (and (<= (setq H (max (/ (+ (current-column) term-width -1) |
| @@ -2009,7 +2009,7 @@ See `term-prompt-regexp'." | |||
| 2009 | (progn (beginning-of-line) | 2009 | (progn (beginning-of-line) |
| 2010 | (not (bobp)))) | 2010 | (not (bobp)))) |
| 2011 | (setq todo (- todo H)) | 2011 | (setq todo (- todo H)) |
| 2012 | (backward-char)) ;; Move to end of previos line | 2012 | (backward-char)) ;; Move to end of previous line. |
| 2013 | (if (and (>= todo H) (> todo 0)) | 2013 | (if (and (>= todo H) (> todo 0)) |
| 2014 | (+ count todo (- 1 H)) ;; Hit beginning of buffer. | 2014 | (+ count todo (- 1 H)) ;; Hit beginning of buffer. |
| 2015 | (move-to-column (* (- H todo 1) term-width)) | 2015 | (move-to-column (* (- H todo 1) term-width)) |
| @@ -2338,7 +2338,7 @@ See `term-prompt-regexp'." | |||
| 2338 | (setq term-current-row (1- term-height)))))) | 2338 | (setq term-current-row (1- term-height)))))) |
| 2339 | 2339 | ||
| 2340 | ;;; Handle a character assuming (eq terminal-state 2) - | 2340 | ;;; Handle a character assuming (eq terminal-state 2) - |
| 2341 | ;;; i.e. we have previousely seen Escape followed by ?[. | 2341 | ;;; i.e. we have previously seen Escape followed by ?[. |
| 2342 | 2342 | ||
| 2343 | (defun term-handle-ansi-escape (proc char) | 2343 | (defun term-handle-ansi-escape (proc char) |
| 2344 | (cond | 2344 | (cond |
| @@ -2423,7 +2423,7 @@ See `term-prompt-regexp'." | |||
| 2423 | (defun term-scroll-region (top bottom) | 2423 | (defun term-scroll-region (top bottom) |
| 2424 | "Set scrolling region. | 2424 | "Set scrolling region. |
| 2425 | TOP is the top-most line (inclusive) of the new scrolling region, | 2425 | TOP is the top-most line (inclusive) of the new scrolling region, |
| 2426 | while BOTTOM is the line folling the new scrolling region (e.g. exclusive). | 2426 | while BOTTOM is the line following the new scrolling region (e.g. exclusive). |
| 2427 | The top-most line is line 0." | 2427 | The top-most line is line 0." |
| 2428 | (setq term-scroll-start | 2428 | (setq term-scroll-start |
| 2429 | (if (or (< top 0) (>= top term-height)) | 2429 | (if (or (< top 0) (>= top term-height)) |
| @@ -2569,7 +2569,7 @@ The top-most line is line 0." | |||
| 2569 | (setq tmp (make-sparse-keymap "More pages?")) | 2569 | (setq tmp (make-sparse-keymap "More pages?")) |
| 2570 | (define-key tmp [help] '("Help" . term-pager-help)) | 2570 | (define-key tmp [help] '("Help" . term-pager-help)) |
| 2571 | (define-key tmp [disable] | 2571 | (define-key tmp [disable] |
| 2572 | '("Diable paging" . term-fake-pager-disable)) | 2572 | '("Disable paging" . term-fake-pager-disable)) |
| 2573 | (define-key tmp [discard] | 2573 | (define-key tmp [discard] |
| 2574 | '("Discard remaining output" . term-pager-discard)) | 2574 | '("Discard remaining output" . term-pager-discard)) |
| 2575 | (define-key tmp [eob] '("Goto to end" . term-pager-eob)) | 2575 | (define-key tmp [eob] '("Goto to end" . term-pager-eob)) |
| @@ -2939,7 +2939,7 @@ This is a good place to put keybindings.") | |||
| 2939 | ;;; want them present in specific modes. | 2939 | ;;; want them present in specific modes. |
| 2940 | 2940 | ||
| 2941 | (defvar term-completion-autolist nil | 2941 | (defvar term-completion-autolist nil |
| 2942 | "*If non-nil, automatically list possiblities on partial completion. | 2942 | "*If non-nil, automatically list possibilities on partial completion. |
| 2943 | This mirrors the optional behavior of tcsh.") | 2943 | This mirrors the optional behavior of tcsh.") |
| 2944 | 2944 | ||
| 2945 | (defvar term-completion-addsuffix t | 2945 | (defvar term-completion-addsuffix t |