diff --git a/man/ChangeLog b/man/ChangeLog index 46d5c2934a1..466d16d51e2 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,8 @@ +2006-10-20 Masatake YAMATO + + * cc-mode.texi (Sample .emacs File): Added missing `)' in + sample code `my-c-initialization-hook'. + 2006-10-19 Stuart D. Herring * widget.texi: Fix typos. diff --git a/man/cc-mode.texi b/man/cc-mode.texi index 395433bc899..801f098b9ce 100644 --- a/man/cc-mode.texi +++ b/man/cc-mode.texi @@ -6560,7 +6560,7 @@ anchoring position to indent the line in that case. (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