1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

(Sample .emacs File): Added missing )' in sample code my-c-initialization-hook'.

This commit is contained in:
Masatake YAMATO 2006-10-20 06:43:56 +00:00
parent 506a66bce3
commit 7e2839b165
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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