aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1996-01-04 23:51:12 +0000
committerKarl Heuer1996-01-04 23:51:12 +0000
commitf7eee6c6dde01d575a7efc3ba35e45024f5abd12 (patch)
tree31ac72d6af0cc6d482d06ada92de60c35c378aa1
parent91a5e36784e6ff8f1a668273de7999fc424a76e9 (diff)
downloademacs-f7eee6c6dde01d575a7efc3ba35e45024f5abd12.tar.gz
emacs-f7eee6c6dde01d575a7efc3ba35e45024f5abd12.zip
(GOLD-map, GOLD-CSI-map, GOLD-SS3-map, tpu-set-mark):
Doc fix.
-rw-r--r--lisp/emulation/tpu-edt.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el
index 59abca4a5d2..bafc098d8ec 100644
--- a/lisp/emulation/tpu-edt.el
+++ b/lisp/emulation/tpu-edt.el
@@ -316,14 +316,14 @@ CSI is DEC's name for the sequence <ESC>[.")
316SS3 is DEC's name for the sequence <ESC>O.") 316SS3 is DEC's name for the sequence <ESC>O.")
317 317
318(defvar GOLD-map (make-keymap) 318(defvar GOLD-map (make-keymap)
319 "Maps the function keys on the VT100 keyboard preceeded by PF1. 319 "Maps the function keys on the VT100 keyboard preceded by PF1.
320GOLD is the ASCII 7-bit escape sequence <ESC>OP.") 320GOLD is the ASCII 7-bit escape sequence <ESC>OP.")
321 321
322(defvar GOLD-CSI-map (make-sparse-keymap) 322(defvar GOLD-CSI-map (make-sparse-keymap)
323 "Maps the function keys on the VT100 keyboard preceeded by GOLD-CSI.") 323 "Maps the function keys on the VT100 keyboard preceded by GOLD-CSI.")
324 324
325(defvar GOLD-SS3-map (make-sparse-keymap) 325(defvar GOLD-SS3-map (make-sparse-keymap)
326 "Maps the function keys on the VT100 keyboard preceeded by GOLD-SS3.") 326 "Maps the function keys on the VT100 keyboard preceded by GOLD-SS3.")
327 327
328(defvar tpu-global-map nil "TPU-edt global keymap.") 328(defvar tpu-global-map nil "TPU-edt global keymap.")
329(defvar tpu-original-global-map (copy-keymap global-map) 329(defvar tpu-original-global-map (copy-keymap global-map)
@@ -543,7 +543,7 @@ version of Emacs."
543 543
544(defun tpu-set-mark (pos) 544(defun tpu-set-mark (pos)
545 "TPU-edt verion of the `set-mark' function. 545 "TPU-edt verion of the `set-mark' function.
546Sets the mark at POS and activates the region acording to the 546Sets the mark at POS and activates the region according to the
547current version of Emacs." 547current version of Emacs."
548 (set-mark pos) 548 (set-mark pos)
549 (and tpu-lucid-emacs19-p pos (zmacs-activate-region))) 549 (and tpu-lucid-emacs19-p pos (zmacs-activate-region)))
@@ -1203,7 +1203,7 @@ direction. If an argument is specified, don't set the search direction."
1203 1203
1204(defun tpu-check-search-case (string) 1204(defun tpu-check-search-case (string)
1205 "Returns t if string contains upper case." 1205 "Returns t if string contains upper case."
1206 ;; if using regexp, elimiate upper case forms (\B \W \S.) 1206 ;; if using regexp, eliminate upper case forms (\B \W \S.)
1207 (if tpu-regexp-p 1207 (if tpu-regexp-p
1208 (let ((pat (copy-sequence string)) (case-fold-search nil) (pos 0)) 1208 (let ((pat (copy-sequence string)) (case-fold-search nil) (pos 0))
1209 (while (setq pos (string-match "\\\\\\\\" pat)) (aset pat (+ 1 pos) ?.)) 1209 (while (setq pos (string-match "\\\\\\\\" pat)) (aset pat (+ 1 pos) ?.))