summaryrefslogtreecommitdiff
path: root/lisp/vt100-led.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/vt100-led.el')
-rw-r--r--lisp/vt100-led.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vt100-led.el b/lisp/vt100-led.el
index 541f06ef471..caf27f55b42 100644
--- a/lisp/vt100-led.el
+++ b/lisp/vt100-led.el
@@ -1,6 +1,6 @@
;;; vt100-led.el --- functions for LED control on VT-100 terminals & clones
-;; Copyright (C) 1988, 2002, 2003, 2004, 2005,
+;; Copyright (C) 1988, 2001, 2002, 2003, 2004, 2005,
;; 2006 Free Software Foundation, Inc.
;; Author: Howard Gayle
@@ -29,7 +29,7 @@
;;; Code:
(defvar led-state (make-vector 5 nil)
- "The internal state of the LEDs. Choices are nil, t, `flash.
+ "The internal state of the LEDs. Choices are nil, t, `flash'.
Element 0 is not used.")
(defun led-flash (l)
@@ -46,7 +46,7 @@ Element 0 is not used.")
(led-update))
(defun led-on (l)
- "Turn on LED l."
+ "Turn on LED L."
(aset led-state l t)
(led-update))