]> code.delx.au - gnu-emacs/blobdiff - lisp/vt100-led.el
Merge from emacs--devo--0
[gnu-emacs] / lisp / vt100-led.el
index 805746dd49581b4efc781fd0ca3083303b764c98..5d25eb104df93adce259aaedbb8642ef1edf4631 100644 (file)
@@ -1,6 +1,7 @@
 ;;; vt100-led.el --- functions for LED control on VT-100 terminals & clones
 
-;; Copyright (C) 1988 Free Software Foundation, Inc.
+;; Copyright (C) 1988, 2001, 2002, 2003, 2004, 2005,
+;;   2006, 2007 Free Software Foundation, Inc.
 
 ;; Author: Howard Gayle
 ;; Maintainer: FSF
@@ -28,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)
@@ -45,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))