summaryrefslogtreecommitdiff
path: root/doc/emacs/programs.texi
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-06-10 22:02:52 +0800
committerChong Yidong <cyd@gnu.org>2012-06-10 22:02:52 +0800
commit166bc0c84e48bc9874abc2b215047a0705d83c1d (patch)
treeb379aae9b705397e48387b54c347c47b8f5a386e /doc/emacs/programs.texi
parentedcdbe4d3121ac663c2c72fce5b69a59c86ecaa1 (diff)
downloademacs-166bc0c84e48bc9874abc2b215047a0705d83c1d.tar.gz
Emacs manual tweaks to accomodate 7x9 pdf.
* emacs.texi: Update ISBN and edition number. * anti.texi: * building.texi: * cmdargs.texi: * custom.texi: * display.texi: * files.texi: * frames.texi: * glossary.texi: * misc.texi: * mule.texi: * programs.texi: * sending.texi: * text.texi: Copyedits to avoid underfull/overfull in 7x9 manual.
Diffstat (limited to 'doc/emacs/programs.texi')
-rw-r--r--doc/emacs/programs.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi
index b7f21e8a93c..9930edfd720 100644
--- a/doc/emacs/programs.texi
+++ b/doc/emacs/programs.texi
@@ -1651,7 +1651,8 @@ the keymap is loaded before we try to change it.
@example
(defun my-bind-clb ()
- (define-key c-mode-base-map "\C-j" 'c-context-line-break))
+ (define-key c-mode-base-map "\C-j"
+ 'c-context-line-break))
(add-hook 'c-initialization-hook 'my-bind-clb)
@end example