aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2016-02-15 21:59:40 -0800
committerGlenn Morris2016-02-15 21:59:40 -0800
commitd5e827929c5f25ccfe68a420bfc45305b06ae5cf (patch)
tree0f182649ca7fea207022ed772ca60fb8399a219f /lisp
parent220613e089ec012ae4ab319637365132ce8dc306 (diff)
downloademacs-d5e827929c5f25ccfe68a420bfc45305b06ae5cf.tar.gz
emacs-d5e827929c5f25ccfe68a420bfc45305b06ae5cf.zip
Provide 'term/name in lisp/term files.
* lisp/term/AT386.el, lisp/term/bobcat.el, lisp/term/cygwin.el: * lisp/term/internal.el, lisp/term/iris-ansi.el, lisp/term/linux.el: * lisp/term/lk201.el, lisp/term/news.el, lisp/term/ns-win.el: * lisp/term/pc-win.el, lisp/term/rxvt.el, lisp/term/screen.el: * lisp/term/sun.el, lisp/term/tty-colors.el, lisp/term/tvi970.el: * lisp/term/vt100.el, lisp/term/vt200.el, lisp/term/w32-win.el: * lisp/term/w32console.el, lisp/term/wyse50.el, lisp/term/x-win.el: For consistency, provide 'term/name in all files that don't already.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/term/AT386.el2
-rw-r--r--lisp/term/bobcat.el2
-rw-r--r--lisp/term/cygwin.el2
-rw-r--r--lisp/term/internal.el2
-rw-r--r--lisp/term/iris-ansi.el2
-rw-r--r--lisp/term/linux.el2
-rw-r--r--lisp/term/lk201.el2
-rw-r--r--lisp/term/news.el2
-rw-r--r--lisp/term/ns-win.el1
-rw-r--r--lisp/term/pc-win.el1
-rw-r--r--lisp/term/rxvt.el2
-rw-r--r--lisp/term/screen.el2
-rw-r--r--lisp/term/sun.el2
-rw-r--r--lisp/term/tty-colors.el2
-rw-r--r--lisp/term/tvi970.el2
-rw-r--r--lisp/term/vt100.el2
-rw-r--r--lisp/term/vt200.el2
-rw-r--r--lisp/term/w32-win.el1
-rw-r--r--lisp/term/w32console.el2
-rw-r--r--lisp/term/wyse50.el2
-rw-r--r--lisp/term/x-win.el1
21 files changed, 38 insertions, 0 deletions
diff --git a/lisp/term/AT386.el b/lisp/term/AT386.el
index 7f46f61c4fb..63469422f76 100644
--- a/lisp/term/AT386.el
+++ b/lisp/term/AT386.el
@@ -54,4 +54,6 @@
54 (define-key local-function-key-map [ALT] [27]) 54 (define-key local-function-key-map [ALT] [27])
55 )) 55 ))
56 56
57(provide 'term/AT386)
58
57;;; AT386.el ends here 59;;; AT386.el ends here
diff --git a/lisp/term/bobcat.el b/lisp/term/bobcat.el
index f26dc6b9198..a32da6ae8f2 100644
--- a/lisp/term/bobcat.el
+++ b/lisp/term/bobcat.el
@@ -5,4 +5,6 @@
5 (keyboard-translate ?\177 ?\^h) 5 (keyboard-translate ?\177 ?\^h)
6 (keyboard-translate ?\^h ?\177)) 6 (keyboard-translate ?\^h ?\177))
7 7
8(provide 'term/bobcat)
9
8;;; bobcat.el ends here 10;;; bobcat.el ends here
diff --git a/lisp/term/cygwin.el b/lisp/term/cygwin.el
index d69433a77c2..edc64b4404d 100644
--- a/lisp/term/cygwin.el
+++ b/lisp/term/cygwin.el
@@ -6,4 +6,6 @@
6 "Terminal initialization function for cygwin." 6 "Terminal initialization function for cygwin."
7 (tty-no-underline)) 7 (tty-no-underline))
8 8
9(provide 'term/cygwin)
10
9;;; cygwin.el ends here 11;;; cygwin.el ends here
diff --git a/lisp/term/internal.el b/lisp/term/internal.el
index f026c66b2a3..f73a107df87 100644
--- a/lisp/term/internal.el
+++ b/lisp/term/internal.el
@@ -604,4 +604,6 @@ list. You can (and should) also run it if and when the value of
604 (run-hooks 'dos-codepage-setup-hook) 604 (run-hooks 'dos-codepage-setup-hook)
605 )) 605 ))
606 606
607(provide 'term/internal)
608
607;;; internal.el ends here 609;;; internal.el ends here
diff --git a/lisp/term/iris-ansi.el b/lisp/term/iris-ansi.el
index ee638643949..5217e42e319 100644
--- a/lisp/term/iris-ansi.el
+++ b/lisp/term/iris-ansi.el
@@ -327,4 +327,6 @@
327 (set-keymap-parent m (keymap-parent input-decode-map)) 327 (set-keymap-parent m (keymap-parent input-decode-map))
328 (set-keymap-parent input-decode-map m))) 328 (set-keymap-parent input-decode-map m)))
329 329
330(provide 'term/iris-ansi)
331
330;;; iris-ansi.el ends here 332;;; iris-ansi.el ends here
diff --git a/lisp/term/linux.el b/lisp/term/linux.el
index 00bcdfdf542..70730dc5844 100644
--- a/lisp/term/linux.el
+++ b/lisp/term/linux.el
@@ -19,4 +19,6 @@
19 ;; The arg only matters in that it is not t or nil. 19 ;; The arg only matters in that it is not t or nil.
20 (set-input-meta-mode 'iso-latin-1)) 20 (set-input-meta-mode 'iso-latin-1))
21 21
22(provide 'term/linux)
23
22;;; linux.el ends here 24;;; linux.el ends here
diff --git a/lisp/term/lk201.el b/lisp/term/lk201.el
index 6b9e1301003..aab4110b3ae 100644
--- a/lisp/term/lk201.el
+++ b/lisp/term/lk201.el
@@ -80,4 +80,6 @@
80 (set-keymap-parent m (keymap-parent input-decode-map)) 80 (set-keymap-parent m (keymap-parent input-decode-map))
81 (set-keymap-parent input-decode-map m))) 81 (set-keymap-parent input-decode-map m)))
82 82
83(provide 'term/lk201)
84
83;;; lk201.el ends here 85;;; lk201.el ends here
diff --git a/lisp/term/news.el b/lisp/term/news.el
index b66e000e3b5..5738644259e 100644
--- a/lisp/term/news.el
+++ b/lisp/term/news.el
@@ -66,4 +66,6 @@
66 (define-key news-fkey-prefix "x" [kp-8]) 66 (define-key news-fkey-prefix "x" [kp-8])
67 )) 67 ))
68 68
69(provide 'term/news)
70
69;;; news.el ends here 71;;; news.el ends here
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el
index e737131d5bf..452c68d0176 100644
--- a/lisp/term/ns-win.el
+++ b/lisp/term/ns-win.el
@@ -936,5 +936,6 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.")
936 (ns-get-selection selection-symbol target-type)) 936 (ns-get-selection selection-symbol target-type))
937 937
938(provide 'ns-win) 938(provide 'ns-win)
939(provide 'term/ns-win)
939 940
940;;; ns-win.el ends here 941;;; ns-win.el ends here
diff --git a/lisp/term/pc-win.el b/lisp/term/pc-win.el
index 8ca98c6ec91..031768cec2c 100644
--- a/lisp/term/pc-win.el
+++ b/lisp/term/pc-win.el
@@ -388,5 +388,6 @@ Errors out because it is not supposed to be called, ever."
388;; --------------------------------------------------------------------------- 388;; ---------------------------------------------------------------------------
389 389
390(provide 'pc-win) 390(provide 'pc-win)
391(provide 'term/pc-win)
391 392
392;;; pc-win.el ends here 393;;; pc-win.el ends here
diff --git a/lisp/term/rxvt.el b/lisp/term/rxvt.el
index da26d30a682..97d38659115 100644
--- a/lisp/term/rxvt.el
+++ b/lisp/term/rxvt.el
@@ -195,4 +195,6 @@
195 (* (apply '+ (car (cddr (nth 15 rxvt-standard-colors)))) 0.6)) 195 (* (apply '+ (car (cddr (nth 15 rxvt-standard-colors)))) 0.6))
196 (set-terminal-parameter nil 'background-mode 'dark))))) 196 (set-terminal-parameter nil 'background-mode 'dark)))))
197 197
198(provide 'term/rxvt)
199
198;;; rxvt.el ends here 200;;; rxvt.el ends here
diff --git a/lisp/term/screen.el b/lisp/term/screen.el
index 7f681154d6e..d7ee7705208 100644
--- a/lisp/term/screen.el
+++ b/lisp/term/screen.el
@@ -20,4 +20,6 @@ it runs, which can change when the screen session is moved to another tty."
20 (let ((xterm-extra-capabilities xterm-screen-extra-capabilities)) 20 (let ((xterm-extra-capabilities xterm-screen-extra-capabilities))
21 (tty-run-terminal-initialization (selected-frame) "xterm"))) 21 (tty-run-terminal-initialization (selected-frame) "xterm")))
22 22
23(provide 'term/screen)
24
23;; screen.el ends here 25;; screen.el ends here
diff --git a/lisp/term/sun.el b/lisp/term/sun.el
index 7fb8e7ed984..ef40db16d18 100644
--- a/lisp/term/sun.el
+++ b/lisp/term/sun.el
@@ -158,4 +158,6 @@
158 (eval (car hooks)) 158 (eval (car hooks))
159 (setq hooks (cdr hooks)))))) 159 (setq hooks (cdr hooks))))))
160 160
161(provide 'term/sun)
162
161;;; sun.el ends here 163;;; sun.el ends here
diff --git a/lisp/term/tty-colors.el b/lisp/term/tty-colors.el
index 3ea26b8c3ed..a88695062b8 100644
--- a/lisp/term/tty-colors.el
+++ b/lisp/term/tty-colors.el
@@ -1035,4 +1035,6 @@ A color is considered gray if the 3 components of its RGB value are equal."
1035 (setq colors (cdr colors))) 1035 (setq colors (cdr colors)))
1036 count)) 1036 count))
1037 1037
1038(provide 'term/tty-colors)
1039
1038;;; tty-colors.el ends here 1040;;; tty-colors.el ends here
diff --git a/lisp/term/tvi970.el b/lisp/term/tvi970.el
index 1173f9f15dd..e25a3b616d5 100644
--- a/lisp/term/tvi970.el
+++ b/lisp/term/tvi970.el
@@ -115,4 +115,6 @@ which the keypad's keys act as ordinary digits."
115 (send-string-to-terminal 115 (send-string-to-terminal
116 (if (terminal-parameter nil 'tvi970-keypad-numeric) "\e=" "\e>"))) 116 (if (terminal-parameter nil 'tvi970-keypad-numeric) "\e=" "\e>")))
117 117
118(provide 'term/tvi970)
119
118;;; tvi970.el ends here 120;;; tvi970.el ends here
diff --git a/lisp/term/vt100.el b/lisp/term/vt100.el
index fb46c996491..16a1c271b9a 100644
--- a/lisp/term/vt100.el
+++ b/lisp/term/vt100.el
@@ -48,4 +48,6 @@ switch to 132-column mode if ARG is omitted or nil."
48 (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l")) 48 (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
49 (set-frame-width terminal-frame (if vt100-wide-mode 132 80))) 49 (set-frame-width terminal-frame (if vt100-wide-mode 132 80)))
50 50
51(provide 'term/vt100)
52
51;;; vt100.el ends here 53;;; vt100.el ends here
diff --git a/lisp/term/vt200.el b/lisp/term/vt200.el
index 550266816e0..dde2e229068 100644
--- a/lisp/term/vt200.el
+++ b/lisp/term/vt200.el
@@ -7,4 +7,6 @@
7 (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 7 (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
8 (define-key local-function-key-map [f11] [?\e])) 8 (define-key local-function-key-map [f11] [?\e]))
9 9
10(provide 'term/vt200)
11
10;;; vt200.el ends here 12;;; vt200.el ends here
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index 134e3106b7b..8f3eaa2c029 100644
--- a/lisp/term/w32-win.el
+++ b/lisp/term/w32-win.el
@@ -463,5 +463,6 @@ That includes all Windows systems except for 9X/Me."
463 (getenv "SystemRoot")) 463 (getenv "SystemRoot"))
464 464
465(provide 'w32-win) 465(provide 'w32-win)
466(provide 'term/w32-win)
466 467
467;;; w32-win.el ends here 468;;; w32-win.el ends here
diff --git a/lisp/term/w32console.el b/lisp/term/w32console.el
index b7e0a22bfb3..bf1550f7c33 100644
--- a/lisp/term/w32console.el
+++ b/lisp/term/w32console.el
@@ -93,4 +93,6 @@
93 (tty-set-up-initial-frame-faces) 93 (tty-set-up-initial-frame-faces)
94 (run-hooks 'terminal-init-w32-hook)) 94 (run-hooks 'terminal-init-w32-hook))
95 95
96(provide 'term/w32console)
97
96;;; w32console.el ends here 98;;; w32console.el ends here
diff --git a/lisp/term/wyse50.el b/lisp/term/wyse50.el
index 3e1055a1873..d3ee7a0a6cb 100644
--- a/lisp/term/wyse50.el
+++ b/lisp/term/wyse50.el
@@ -155,4 +155,6 @@ M-r M-x move-to-window-line, Funct up-arrow or down-arrow are similar"
155 ;; (nth 1 key-definition))) 155 ;; (nth 1 key-definition)))
156 (fset 'enable-arrow-keys nil)) 156 (fset 'enable-arrow-keys nil))
157 157
158(provide 'term/wyse50)
159
158;;; wyse50.el ends here 160;;; wyse50.el ends here
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 59df14da93a..c8e79e3f81a 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -1487,5 +1487,6 @@ This uses `icon-map-list' to map icon file names to stock icon names."
1487(global-set-key [XF86WakeUp] 'ignore) 1487(global-set-key [XF86WakeUp] 'ignore)
1488 1488
1489(provide 'x-win) 1489(provide 'x-win)
1490(provide 'term/x-win)
1490 1491
1491;;; x-win.el ends here 1492;;; x-win.el ends here