emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master d5e8279: Provide 'term/name in lisp/term files.


From: Glenn Morris
Subject: [Emacs-diffs] master d5e8279: Provide 'term/name in lisp/term files.
Date: Tue, 16 Feb 2016 06:00:16 +0000

branch: master
commit d5e827929c5f25ccfe68a420bfc45305b06ae5cf
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    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.
---
 lisp/term/AT386.el      |    2 ++
 lisp/term/bobcat.el     |    2 ++
 lisp/term/cygwin.el     |    2 ++
 lisp/term/internal.el   |    2 ++
 lisp/term/iris-ansi.el  |    2 ++
 lisp/term/linux.el      |    2 ++
 lisp/term/lk201.el      |    2 ++
 lisp/term/news.el       |    2 ++
 lisp/term/ns-win.el     |    1 +
 lisp/term/pc-win.el     |    1 +
 lisp/term/rxvt.el       |    2 ++
 lisp/term/screen.el     |    2 ++
 lisp/term/sun.el        |    2 ++
 lisp/term/tty-colors.el |    2 ++
 lisp/term/tvi970.el     |    2 ++
 lisp/term/vt100.el      |    2 ++
 lisp/term/vt200.el      |    2 ++
 lisp/term/w32-win.el    |    1 +
 lisp/term/w32console.el |    2 ++
 lisp/term/wyse50.el     |    2 ++
 lisp/term/x-win.el      |    1 +
 21 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/lisp/term/AT386.el b/lisp/term/AT386.el
index 7f46f61..6346942 100644
--- a/lisp/term/AT386.el
+++ b/lisp/term/AT386.el
@@ -54,4 +54,6 @@
     (define-key local-function-key-map [ALT] [27])
     ))
 
+(provide 'term/AT386)
+
 ;;; AT386.el ends here
diff --git a/lisp/term/bobcat.el b/lisp/term/bobcat.el
index f26dc6b..a32da6a 100644
--- a/lisp/term/bobcat.el
+++ b/lisp/term/bobcat.el
@@ -5,4 +5,6 @@
   (keyboard-translate ?\177 ?\^h)
   (keyboard-translate ?\^h ?\177))
 
+(provide 'term/bobcat)
+
 ;;; bobcat.el ends here
diff --git a/lisp/term/cygwin.el b/lisp/term/cygwin.el
index d69433a..edc64b4 100644
--- a/lisp/term/cygwin.el
+++ b/lisp/term/cygwin.el
@@ -6,4 +6,6 @@
   "Terminal initialization function for cygwin."
   (tty-no-underline))
 
+(provide 'term/cygwin)
+
 ;;; cygwin.el ends here
diff --git a/lisp/term/internal.el b/lisp/term/internal.el
index f026c66..f73a107 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
     (run-hooks 'dos-codepage-setup-hook)
     ))
 
+(provide 'term/internal)
+
 ;;; internal.el ends here
diff --git a/lisp/term/iris-ansi.el b/lisp/term/iris-ansi.el
index ee63864..5217e42 100644
--- a/lisp/term/iris-ansi.el
+++ b/lisp/term/iris-ansi.el
@@ -327,4 +327,6 @@
     (set-keymap-parent m (keymap-parent input-decode-map))
     (set-keymap-parent input-decode-map m)))
 
+(provide 'term/iris-ansi)
+
 ;;; iris-ansi.el ends here
diff --git a/lisp/term/linux.el b/lisp/term/linux.el
index 00bcdfd..70730dc 100644
--- a/lisp/term/linux.el
+++ b/lisp/term/linux.el
@@ -19,4 +19,6 @@
   ;; The arg only matters in that it is not t or nil.
   (set-input-meta-mode 'iso-latin-1))
 
+(provide 'term/linux)
+
 ;;; linux.el ends here
diff --git a/lisp/term/lk201.el b/lisp/term/lk201.el
index 6b9e130..aab4110 100644
--- a/lisp/term/lk201.el
+++ b/lisp/term/lk201.el
@@ -80,4 +80,6 @@
     (set-keymap-parent m (keymap-parent input-decode-map))
     (set-keymap-parent input-decode-map m)))
 
+(provide 'term/lk201)
+
 ;;; lk201.el ends here
diff --git a/lisp/term/news.el b/lisp/term/news.el
index b66e000..5738644 100644
--- a/lisp/term/news.el
+++ b/lisp/term/news.el
@@ -66,4 +66,6 @@
     (define-key news-fkey-prefix "x" [kp-8])
     ))
 
+(provide 'term/news)
+
 ;;; news.el ends here
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el
index e737131..452c68d 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.")
   (ns-get-selection selection-symbol target-type))
 
 (provide 'ns-win)
+(provide 'term/ns-win)
 
 ;;; ns-win.el ends here
diff --git a/lisp/term/pc-win.el b/lisp/term/pc-win.el
index 8ca98c6..031768c 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."
 ;; ---------------------------------------------------------------------------
 
 (provide 'pc-win)
+(provide 'term/pc-win)
 
 ;;; pc-win.el ends here
diff --git a/lisp/term/rxvt.el b/lisp/term/rxvt.el
index da26d30..97d3865 100644
--- a/lisp/term/rxvt.el
+++ b/lisp/term/rxvt.el
@@ -195,4 +195,6 @@
             (* (apply '+ (car (cddr (nth 15 rxvt-standard-colors)))) 0.6))
          (set-terminal-parameter nil 'background-mode 'dark)))))
 
+(provide 'term/rxvt)
+
 ;;; rxvt.el ends here
diff --git a/lisp/term/screen.el b/lisp/term/screen.el
index 7f68115..d7ee770 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."
   (let ((xterm-extra-capabilities xterm-screen-extra-capabilities))
     (tty-run-terminal-initialization (selected-frame) "xterm")))
 
+(provide 'term/screen)
+
 ;; screen.el ends here
diff --git a/lisp/term/sun.el b/lisp/term/sun.el
index 7fb8e7e..ef40db1 100644
--- a/lisp/term/sun.el
+++ b/lisp/term/sun.el
@@ -158,4 +158,6 @@
        (eval (car hooks))
        (setq hooks (cdr hooks))))))
 
+(provide 'term/sun)
+
 ;;; sun.el ends here
diff --git a/lisp/term/tty-colors.el b/lisp/term/tty-colors.el
index 3ea26b8..a886950 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."
       (setq colors (cdr colors)))
     count))
 
+(provide 'term/tty-colors)
+
 ;;; tty-colors.el ends here
diff --git a/lisp/term/tvi970.el b/lisp/term/tvi970.el
index 1173f9f..e25a3b6 100644
--- a/lisp/term/tvi970.el
+++ b/lisp/term/tvi970.el
@@ -115,4 +115,6 @@ which the keypad's keys act as ordinary digits."
   (send-string-to-terminal
    (if (terminal-parameter nil 'tvi970-keypad-numeric) "\e=" "\e>")))
 
+(provide 'term/tvi970)
+
 ;;; tvi970.el ends here
diff --git a/lisp/term/vt100.el b/lisp/term/vt100.el
index fb46c99..16a1c27 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."
   (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
   (set-frame-width terminal-frame (if vt100-wide-mode 132 80)))
 
+(provide 'term/vt100)
+
 ;;; vt100.el ends here
diff --git a/lisp/term/vt200.el b/lisp/term/vt200.el
index 5502668..dde2e22 100644
--- a/lisp/term/vt200.el
+++ b/lisp/term/vt200.el
@@ -7,4 +7,6 @@
   (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
   (define-key local-function-key-map [f11] [?\e]))
 
+(provide 'term/vt200)
+
 ;;; vt200.el ends here
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index 134e310..8f3eaa2 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."
   (getenv "SystemRoot"))
 
 (provide 'w32-win)
+(provide 'term/w32-win)
 
 ;;; w32-win.el ends here
diff --git a/lisp/term/w32console.el b/lisp/term/w32console.el
index b7e0a22..bf1550f 100644
--- a/lisp/term/w32console.el
+++ b/lisp/term/w32console.el
@@ -93,4 +93,6 @@
   (tty-set-up-initial-frame-faces)
   (run-hooks 'terminal-init-w32-hook))
 
+(provide 'term/w32console)
+
 ;;; w32console.el ends here
diff --git a/lisp/term/wyse50.el b/lisp/term/wyse50.el
index 3e1055a..d3ee7a0 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"
   ;;                   (nth 1 key-definition)))
   (fset 'enable-arrow-keys nil))
 
+(provide 'term/wyse50)
+
 ;;; wyse50.el ends here
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 59df14d..c8e79e3 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."
 (global-set-key [XF86WakeUp] 'ignore)
 
 (provide 'x-win)
+(provide 'term/x-win)
 
 ;;; x-win.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]