changeset 73443:993286e581a6

(Sample .emacs File): Added missing `)' in sample code `my-c-initialization-hook'.
author Masatake YAMATO <jet@gyve.org>
date Fri, 20 Oct 2006 06:43:56 +0000
parents ef9abe853edb
children ee7eeb5732b2
files man/ChangeLog man/cc-mode.texi
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/man/ChangeLog	Thu Oct 19 14:16:57 2006 +0000
+++ b/man/ChangeLog	Fri Oct 20 06:43:56 2006 +0000
@@ -1,3 +1,8 @@
+2006-10-20  Masatake YAMATO  <jet@gyve.org>
+
+	* cc-mode.texi (Sample .emacs File): Added missing `)' in 
+	sample code `my-c-initialization-hook'.
+
 2006-10-19  Stuart D. Herring  <herring@lanl.gov>
 
 	* widget.texi: Fix typos.
--- a/man/cc-mode.texi	Thu Oct 19 14:16:57 2006 +0000
+++ b/man/cc-mode.texi	Fri Oct 20 06:43:56 2006 +0000
@@ -6560,7 +6560,7 @@
 (defun my-c-initialization-hook ()
   (define-key c-mode-base-map "\C-m" 'c-context-line-break)
   (define-key c-mode-base-map [?\C-\M-a] 'c-beginning-of-defun)
-  (define-key c-mode-base-map [?\C-\M-e] 'c-end-of-defun)
+  (define-key c-mode-base-map [?\C-\M-e] 'c-end-of-defun))
 (add-hook 'c-initialization-hook 'my-c-initialization-hook)
 
 ;; offset customizations not in my-c-style