aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2001-07-16 11:39:42 +0000
committerPavel Janík <[email protected]>2001-07-16 11:39:42 +0000
commit6a05d05fafe43d1546cef84b004372b784d3792f (patch)
tree93fb7b766185e1e1945bb413a6beb7673a755b14 /lisp/term
parentbfb01a95c2de0a4f3f78b26829793b284c265578 (diff)
Fixes to follow coding conventions.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/news.el2
-rw-r--r--lisp/term/w32-win.el2
-rw-r--r--lisp/term/xterm.el6
3 files changed, 7 insertions, 3 deletions
diff --git a/lisp/term/news.el b/lisp/term/news.el
index af8635fb06..9830aed253 100644
--- a/lisp/term/news.el
+++ b/lisp/term/news.el
@@ -33,7 +33,7 @@
;; The terminal initialization should already have set up some keys
(setq news-fkey-prefix (lookup-key function-key-map "\eO"))
(if (not (keymapp news-fkey-prefix))
- (error "What? Your news termcap/terminfo has no keycaps in it."))
+ (error "What? Your news termcap/terminfo has no keycaps in it"))
;; Termcap or terminfo will set these
;; (define-key news-fkey-prefix "P" [f1])
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index 50d17d6705..fdb9e1916c 100644
--- a/lisp/term/w32-win.el
+++ b/lisp/term/w32-win.el
@@ -1,4 +1,4 @@
-;;; w32-win.el --- parse switches controlling interface with W32 window system.
+;;; w32-win.el --- parse switches controlling interface with W32 window system
;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el
index 05b5b7ba0f..6f0f779df4 100644
--- a/lisp/term/xterm.el
+++ b/lisp/term/xterm.el
@@ -22,7 +22,9 @@
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
-;;;; Code:
+;;; Commentary:
+
+;;; Code:
(define-key function-key-map "\e[A" [up])
(define-key function-key-map "\e[B" [down])
@@ -45,3 +47,5 @@
(define-key function-key-map "\e[23~" [f11])
(define-key function-key-map "\e[24~" [f12])
(define-key function-key-map "\e[29~" [print])
+
+;;; xterm.el ends here