diff options
| author | Stefan Monnier | 2010-12-10 19:13:08 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2010-12-10 19:13:08 -0500 |
| commit | 2c302df3a13236bfbf8ea1b771d13618fcda8d71 (patch) | |
| tree | f26dc9f22861dc37610de319d05255de058c221b /doc/lispref/functions.texi | |
| parent | 0c747cb143fa227e78f350ac353d703f489209df (diff) | |
| parent | 175069efeb080517afefdd44a06f7a779ea8c25c (diff) | |
| download | emacs-2c302df3a13236bfbf8ea1b771d13618fcda8d71.tar.gz emacs-2c302df3a13236bfbf8ea1b771d13618fcda8d71.zip | |
Merge from trunk
Diffstat (limited to 'doc/lispref/functions.texi')
| -rw-r--r-- | doc/lispref/functions.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index d5c89dd7cf3..e9003601516 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -843,7 +843,7 @@ length of @var{sequence}. For example: | |||
| 843 | @result{} (a c e) | 843 | @result{} (a c e) |
| 844 | (mapcar '1+ [1 2 3]) | 844 | (mapcar '1+ [1 2 3]) |
| 845 | @result{} (2 3 4) | 845 | @result{} (2 3 4) |
| 846 | (mapcar 'char-to-string "abc") | 846 | (mapcar 'string "abc") |
| 847 | @result{} ("a" "b" "c") | 847 | @result{} ("a" "b" "c") |
| 848 | @end group | 848 | @end group |
| 849 | 849 | ||