diff options
| author | Chong Yidong | 2012-08-15 00:28:23 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-08-15 00:28:23 +0800 |
| commit | 55802e4a3dc1d6b1ffa05c193cdd94f9f69c1a41 (patch) | |
| tree | adc01d112307b091888d9e61c4b5c38590593ab5 /lisp | |
| parent | e38b9db247bec5413de0cd1001d376941a59ba29 (diff) | |
| download | emacs-55802e4a3dc1d6b1ffa05c193cdd94f9f69c1a41.tar.gz emacs-55802e4a3dc1d6b1ffa05c193cdd94f9f69c1a41.zip | |
Doc fixes.
* lisp/emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix.
* src/chartab.c (Fmap_char_table): Doc fix.
* src/editfns.c (Fformat): Doc fix.
Fixes: debbugs:12059 debbugs:12085 debbugs:12061
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/regexp-opt.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 454b8ed38ea..8d27fc65185 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-08-14 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix | ||
| 4 | (Bug#12085). | ||
| 5 | |||
| 1 | 2012-08-14 Glenn Morris <rgm@gnu.org> | 6 | 2012-08-14 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix. | 8 | * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix. |
diff --git a/lisp/emacs-lisp/regexp-opt.el b/lisp/emacs-lisp/regexp-opt.el index 72e3c398dc0..8c64327c0ff 100644 --- a/lisp/emacs-lisp/regexp-opt.el +++ b/lisp/emacs-lisp/regexp-opt.el | |||
| @@ -234,7 +234,8 @@ Merges keywords to avoid backtracking in Emacs's regexp matcher." | |||
| 234 | 234 | ||
| 235 | 235 | ||
| 236 | (defun regexp-opt-charset (chars) | 236 | (defun regexp-opt-charset (chars) |
| 237 | "Return a regexp to match a character in CHARS." | 237 | "Return a regexp to match a character in CHARS. |
| 238 | CHARS should be a list of characters." | ||
| 238 | ;; The basic idea is to find character ranges. Also we take care in the | 239 | ;; The basic idea is to find character ranges. Also we take care in the |
| 239 | ;; position of character set meta characters in the character set regexp. | 240 | ;; position of character set meta characters in the character set regexp. |
| 240 | ;; | 241 | ;; |