summaryrefslogtreecommitdiff
path: root/lisp/vt100-led.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-27 17:06:34 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-27 17:06:34 +0000
commite4e0a304b99a04b3616969bbd0afce6612514dff (patch)
tree6af90e50a813849b2b4c4218c35cada92145a45c /lisp/vt100-led.el
parent30cf0c33e1678550bbd7e142875e815ee09a72cf (diff)
downloademacs-e4e0a304b99a04b3616969bbd0afce6612514dff.tar.gz
(led-state, led-on): Fix typo in docstring.
Diffstat (limited to 'lisp/vt100-led.el')
-rw-r--r--lisp/vt100-led.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vt100-led.el b/lisp/vt100-led.el
index 541f06ef471..8310aa39117 100644
--- a/lisp/vt100-led.el
+++ b/lisp/vt100-led.el
@@ -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))