diff options
| author | Juanma Barranquero | 2007-10-31 13:07:03 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-10-31 13:07:03 +0000 |
| commit | f5d47fb2622a7503f90bfba3503d254af3da11b4 (patch) | |
| tree | 7c3c596feb72a5a29fd1eb79d25d20f335f16738 | |
| parent | 59e1bd2913bfeb01d12f0ba419aa63d6cd00a604 (diff) | |
| download | emacs-f5d47fb2622a7503f90bfba3503d254af3da11b4.tar.gz emacs-f5d47fb2622a7503f90bfba3503d254af3da11b4.zip | |
(strokes-alphabetic-lessp): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/strokes.el | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7aa77756e45..cf0e02ddfb4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | 2007-10-31 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * strokes.el (strokes-alphabetic-lessp): Doc fix. | ||
| 4 | |||
| 1 | 2007-10-31 Sean O'Rourke <sorourke@cs.ucsd.edu> | 5 | 2007-10-31 Sean O'Rourke <sorourke@cs.ucsd.edu> |
| 2 | 6 | ||
| 3 | * emacs-lisp/find-func.el (find-library): use library at | 7 | * emacs-lisp/find-func.el (find-library): Use library at |
| 4 | point as default interactive argument. | 8 | point as default interactive argument. |
| 5 | 9 | ||
| 6 | 2007-10-31 Juanma Barranquero <lekktu@gmail.com> | 10 | 2007-10-31 Juanma Barranquero <lekktu@gmail.com> |
diff --git a/lisp/strokes.el b/lisp/strokes.el index de4123453f5..8f6d57b10a0 100644 --- a/lisp/strokes.el +++ b/lisp/strokes.el | |||
| @@ -1370,7 +1370,7 @@ If STROKES-MAP is not given, `strokes-global-map' will be used instead." | |||
| 1370 | (goto-char (point-min)))) | 1370 | (goto-char (point-min)))) |
| 1371 | 1371 | ||
| 1372 | (defun strokes-alphabetic-lessp (stroke1 stroke2) | 1372 | (defun strokes-alphabetic-lessp (stroke1 stroke2) |
| 1373 | "T if command name for STROKE1 is less than STROKE2's in lexicographic order." | 1373 | "Return t if STROKE1's command name precedes STROKE2's in lexicographic order." |
| 1374 | (let ((command-name-1 (symbol-name (cdr stroke1))) | 1374 | (let ((command-name-1 (symbol-name (cdr stroke1))) |
| 1375 | (command-name-2 (symbol-name (cdr stroke2)))) | 1375 | (command-name-2 (symbol-name (cdr stroke2)))) |
| 1376 | (string-lessp command-name-1 command-name-2))) | 1376 | (string-lessp command-name-1 command-name-2))) |