changeset 78622:f4ea08bfc09e

refcard updates for printing
author Karl Berry <karl@gnu.org>
date Wed, 22 Aug 2007 20:14:13 +0000
parents 1dbe2728aae4
children b043100d34e6
files etc/ChangeLog etc/refcard.tex
diffstat 2 files changed, 16 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/etc/ChangeLog	Wed Aug 22 19:42:19 2007 +0000
+++ b/etc/ChangeLog	Wed Aug 22 20:14:13 2007 +0000
@@ -1,3 +1,11 @@
+2007-08-22  Karl Berry  <karl@gnu.org>
+
+	* refcard.tex: updates for printing per johns.
+        (\versionyear): update to 2007.
+	(\copyrightnotice): modified or unmodified ok.
+	(Simple Customization): don't use goto-line, since now it's bound.
+	Also, use now-preferred (kbd ...) syntax.
+
 2007-08-14  Glenn Morris  <rgm@gnu.org>
 
 	* NEWS: Mention `bad-packages-alist'.
--- a/etc/refcard.tex	Wed Aug 22 19:42:19 2007 +0000
+++ b/etc/refcard.tex	Wed Aug 22 20:14:13 2007 +0000
@@ -64,7 +64,7 @@
 % If there were room, it would be nice to see a section on Dired.
 
 \def\versionnumber{2.3}         % version of this manual
-\def\versionyear{2006}          % year manual was updated
+\def\versionyear{2007}          % year manual was updated
 \def\versionemacs{22}           % version of emacs this manual is for
 \def\year{2007}                 % copyright year
 
@@ -78,9 +78,9 @@
 \centerline{v\versionnumber{} for GNU Emacs version \versionemacs, \versionyear}
 \centerline{designed by Stephen Gildea}
 
-Permission is granted to make and distribute copies of
-this card provided the copyright notice and this permission notice
-are preserved on all copies.
+Permission is granted to make and distribute modified or unmodified
+copies of this card provided the copyright notice and this permission
+notice are preserved on all copies.
 
 For copies of the GNU Emacs manual, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
@@ -449,7 +449,7 @@
 \key{put exactly one space at point}{M-SPC}
 
 \key{fill paragraph}{M-q}
-\key{set fill column}{C-x f}
+\key{set fill column to {\it arg}}{C-x f}
 \key{set prefix each line starts with}{C-x .}
 
 \key{set face}{M-o}
@@ -638,11 +638,11 @@
 % The intended audience here is the person who wants to make simple
 % customizations and knows Lisp syntax.
 
-Making global key bindings in Emacs Lisp (examples):
+Making global key bindings in Emacs Lisp (example):
 
 \beginexample%
-(global-set-key "\\C-cg" 'goto-line)
-(global-set-key "\\M-\#" 'query-replace-regexp)
+(global-set-key (kbd "C-c g") 'search-forward)
+(global-set-key (kbd "M-\#") 'query-replace-regexp)
 \endexample
 
 \section{Writing Commands}