diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-01 12:57:44 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-01 12:58:53 -0700 |
commit | 08782a2ea95dec5662954a1de353a7da699ac339 (patch) | |
tree | df3a1d480a6826fb4ae3b3083e0e24068f076a6e /doc/lispref/keymaps.texi | |
parent | c33d89cc644f995510b13b951e4201879de2b6f8 (diff) | |
download | emacs-08782a2ea95dec5662954a1de353a7da699ac339.tar.gz |
Prefer plain characters to Texinfo circumlocutions
For example, prefer 'François' to 'Fran\c{c}ois', 'Fran\c cois',
'Fran@,{c}ois' or 'Francois' (all of which were used!) in Texinfo sources.
Diffstat (limited to 'doc/lispref/keymaps.texi')
-rw-r--r-- | doc/lispref/keymaps.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi index 7ba45a6023f..7752bf0617c 100644 --- a/doc/lispref/keymaps.texi +++ b/doc/lispref/keymaps.texi @@ -1,4 +1,4 @@ -@c -*-texinfo-*- +@c -*- mode: texinfo; coding: utf-8 -*- @c This is part of the GNU Emacs Lisp Reference Manual. @c Copyright (C) 1990-1994, 1998-2015 Free Software Foundation, Inc. @c See the file elisp.texi for copying conditions. @@ -1717,14 +1717,14 @@ they usually will be in a Lisp file (@pxref{Loading Non-ASCII}), you must type the keys as multibyte too. For instance, if you use this: @smallexample -(global-set-key "@"o" 'my-function) ; bind o-umlaut +(global-set-key "ö" 'my-function) ; bind o-umlaut @end smallexample @noindent or @smallexample -(global-set-key ?@"o 'my-function) ; bind o-umlaut +(global-set-key ?ö 'my-function) ; bind o-umlaut @end smallexample @noindent |