diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-11-21 13:07:47 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-11-21 13:07:47 -0500 |
commit | 3e99b8257bc97f34595128b200e25b76a2fe560f (patch) | |
tree | eb054645adbe8b090bfa8244c0e18a1d7b8861fb /doc/lispref/help.texi | |
parent | 5b9b7ef4489a78fea8f37bcc79385ff234594166 (diff) | |
download | emacs-3e99b8257bc97f34595128b200e25b76a2fe560f.tar.gz emacs-3e99b8257bc97f34595128b200e25b76a2fe560f.tar.bz2 emacs-3e99b8257bc97f34595128b200e25b76a2fe560f.zip |
Document byte-to-string in Lisp manual.
* objects.texi (Symbol Type):
* text.texi (Near Point):
* help.texi (Help Functions):
* functions.texi (Mapping Functions): Use string instead of
char-to-string in examples.
* nonascii.texi (Converting Representations): Document
byte-to-string.
* strings.texi (Creating Strings): Don't mention semi-obsolete
function char-to-string.
(String Conversion): Shorten discussion of semi-obsolete function
string-to-char. Link to Converting Representations.
Diffstat (limited to 'doc/lispref/help.texi')
-rw-r--r-- | doc/lispref/help.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/help.texi b/doc/lispref/help.texi index 026258f2472..31a4db31dc9 100644 --- a/doc/lispref/help.texi +++ b/doc/lispref/help.texi @@ -551,7 +551,7 @@ follows: @smallexample @group -(define-key global-map (char-to-string help-char) 'help-command) +(define-key global-map (string help-char) 'help-command) (fset 'help-command help-map) @end group @end smallexample |