diff options
| author | Juanma Barranquero | 2008-03-05 11:45:32 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-03-05 11:45:32 +0000 |
| commit | 252ca1228ed1217b200421797a3813dca3f20ee5 (patch) | |
| tree | 62d3dd3875777370c338e20fa8836459a6a81c9a | |
| parent | da5b5435a87be1409bf8c13ce781e3991c7080e0 (diff) | |
| download | emacs-252ca1228ed1217b200421797a3813dca3f20ee5.tar.gz emacs-252ca1228ed1217b200421797a3813dca3f20ee5.zip | |
(iswitchb-use-faces): Doc fix.
(iswitchb-buffer-ignore, iswitchb-read-buffer): Fix typos in docstrings.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/iswitchb.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7dfe88d5778..7e3bda149d7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-03-05 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * iswitchb.el (iswitchb-use-faces): Doc fix. | ||
| 4 | (iswitchb-buffer-ignore, iswitchb-read-buffer): Fix typos in docstrings. | ||
| 5 | |||
| 1 | 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords): | 8 | * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords): |
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el index 7c0da4fe6bc..36d8a0ccb3a 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el | |||
| @@ -289,7 +289,7 @@ is temporarily case sensitive." | |||
| 289 | "*List of regexps or functions matching buffer names to ignore. | 289 | "*List of regexps or functions matching buffer names to ignore. |
| 290 | For example, traditional behavior is not to list buffers whose names begin | 290 | For example, traditional behavior is not to list buffers whose names begin |
| 291 | with a space, for which the regexp is `^ '. See the source file for | 291 | with a space, for which the regexp is `^ '. See the source file for |
| 292 | example functions that filter buffernames." | 292 | example functions that filter buffer names." |
| 293 | :type '(repeat (choice regexp function)) | 293 | :type '(repeat (choice regexp function)) |
| 294 | :group 'iswitchb) | 294 | :group 'iswitchb) |
| 295 | (put 'iswitchb-buffer-ignore 'risky-local-variable t) | 295 | (put 'iswitchb-buffer-ignore 'risky-local-variable t) |
| @@ -374,7 +374,7 @@ See also `iswitchb-newbuffer'." | |||
| 374 | :group 'iswitchb) | 374 | :group 'iswitchb) |
| 375 | 375 | ||
| 376 | (defcustom iswitchb-use-faces t | 376 | (defcustom iswitchb-use-faces t |
| 377 | "*Non-nil means use font-lock fonts for showing first match." | 377 | "*Non-nil means use font-lock faces for showing first match." |
| 378 | :type 'boolean | 378 | :type 'boolean |
| 379 | :group 'iswitchb) | 379 | :group 'iswitchb) |
| 380 | (define-obsolete-variable-alias 'iswitchb-use-fonts 'iswitchb-use-faces "22.1") | 380 | (define-obsolete-variable-alias 'iswitchb-use-fonts 'iswitchb-use-faces "22.1") |
| @@ -624,7 +624,7 @@ Return the name of a buffer selected. | |||
| 624 | PROMPT is the prompt to give to the user. | 624 | PROMPT is the prompt to give to the user. |
| 625 | DEFAULT if given is the default buffer to be selected, which will | 625 | DEFAULT if given is the default buffer to be selected, which will |
| 626 | go to the front of the list. | 626 | go to the front of the list. |
| 627 | If REQUIRE-MATCH is non-nil, an existing-buffer must be selected. | 627 | If REQUIRE-MATCH is non-nil, an existing buffer must be selected. |
| 628 | If START is a string, the selection process is started with that | 628 | If START is a string, the selection process is started with that |
| 629 | string. | 629 | string. |
| 630 | If MATCHES-SET is non-nil, the buflist is not updated before | 630 | If MATCHES-SET is non-nil, the buflist is not updated before |