From 7e2839b1651207b78013e3c56d2724270587114f Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Fri, 20 Oct 2006 06:43:56 +0000 Subject: [PATCH] (Sample .emacs File): Added missing `)' in sample code `my-c-initialization-hook'. --- man/ChangeLog | 5 +++++ man/cc-mode.texi | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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