diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-09 11:59:12 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-09 11:59:12 +0000 |
commit | 51e0793e64ad3bd5dc846baec79a4b7bd4b6bbd1 (patch) | |
tree | 063390d9d89804416186b2e30f271758dc0a0542 /lisp/term | |
parent | 991171cf5b04b6949734b55ab6d6f5657ee19428 (diff) | |
download | emacs-51e0793e64ad3bd5dc846baec79a4b7bd4b6bbd1.tar.gz |
Apply typo patches from Paul Eggert.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/README | 2 | ||||
-rw-r--r-- | lisp/term/sun-mouse.el | 10 | ||||
-rw-r--r-- | lisp/term/wyse50.el | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lisp/term/README b/lisp/term/README index 7307634c75c..e672b15dcf7 100644 --- a/lisp/term/README +++ b/lisp/term/README @@ -162,7 +162,7 @@ key_f64 k1 function key 64 (4) The uses of the "k0" capability are inconsistent; sometimes it describes F10, whereas othertimes it describes F0 and "k;" describes F10. - Emacs attempts to politely accomodate both systems by testing for + Emacs attempts to politely accommodate both systems by testing for "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10. ----------------------------------------------------------------------------- diff --git a/lisp/term/sun-mouse.el b/lisp/term/sun-mouse.el index 2356c65917a..b34c3833dd5 100644 --- a/lisp/term/sun-mouse.el +++ b/lisp/term/sun-mouse.el @@ -65,7 +65,7 @@ Setting to nil limits the scrollbar to the edge or vertical dividing bar.") (defun define-mouse (mousemap mouse-list def) "Args MOUSEMAP, MOUSE-LIST, DEF. Define MOUSE-LIST in MOUSEMAP as DEF. -MOUSE-LIST is a list of atoms specifing a mouse hit according to these rules: +MOUSE-LIST is a list of atoms specifying a mouse hit according to these rules: * One of these atoms specifies the active region of the definition. text, scrollbar, modeline, minibuffer * One or two or these atoms specify the button or button combination. @@ -151,7 +151,7 @@ Just like the Common Lisp function of the same name." (defmacro sm::hit-x (hit) (list 'nth 1 hit)) ;;; Screen y position. (defmacro sm::hit-y (hit) (list 'nth 2 hit)) -;;; Millisconds since last hit. +;;; Milliseconds since last hit. (defmacro sm::hit-delta (hit) (list 'nth 3 hit)) (defmacro sm::hit-up-p (hit) ; A predicate. @@ -374,7 +374,7 @@ Returns one of (text scrollbar modeline minibuffer)" (cond ((minibuffer-window-p w) 'minibuffer) ((>= y bottom) 'modeline) ((>= x right) 'scrollbar) - ;; far right column (window seperator) is always a scrollbar + ;; far right column (window separator) is always a scrollbar ((and scrollbar-width ;; mouse within scrollbar-width of edge. (>= x (- right scrollbar-width)) @@ -596,7 +596,7 @@ evaluated for their side-effects rather than their values. If the selected form is a menu or a symbol whose value is a menu, then it is displayed and evaluated as a pullright menu item. If the the FORM of the first ITEM is nil, the STRING of the item -is used as a label for the menu, i.e. it's inverted and not selectible." +is used as a label for the menu, i.e. it's inverted and not selectable." (if (symbolp menu) (setq menu (symbol-value menu))) (eval (sun-menu-internal *menu-window* *menu-x* *menu-y* 4 menu))) @@ -641,7 +641,7 @@ CODE values: 13 = Tool-Position, 14 = Size-in-Pixels, 18 = Size-in-Chars." ;;; ;;; Function interface to selection/region -;;; primative functions are defined in sunfns.c +;;; primitive functions are defined in sunfns.c ;;; (defun sun-yank-selection () "Set mark and yank the contents of the current sunwindows selection. diff --git a/lisp/term/wyse50.el b/lisp/term/wyse50.el index 9cc7ff991c6..64bd9532de4 100644 --- a/lisp/term/wyse50.el +++ b/lisp/term/wyse50.el @@ -26,7 +26,7 @@ ;; Uses the Emacs 19 terminal initialization features --- won't work with 18. ;; Rewritten for Emacs 19 by jimb, January 1992 -;; Cleaned up for new terminal package cinventions by esr, March 1993 +;; Cleaned up for new terminal package conventions by esr, March 1993 ;; Should work well for Televideo TVI 925 although it's overkill. ;; ;; The Wyse50 is ergonomically wonderful, but its escape-sequence design sucks |