1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-08 20:58:58 +00:00

(led-state, led-on): Fix typo in docstring.

This commit is contained in:
Juanma Barranquero 2006-11-27 17:06:34 +00:00
parent 30cf0c33e1
commit e4e0a304b9

View File

@ -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))