BUG: In example .emacs code use \' for end-of-string instead of $ for end-of-line.

This commit is contained in:
Brad King 2006-04-26 15:54:58 -04:00
parent c8e355b6a1
commit 92ea0a077c
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@
;; (setq load-path (cons (expand-file-name "/dir/with/cmake-mode") load-path))
;; (require 'cmake-mode)
;; (setq auto-mode-alist
;; (append '(("CMakeLists\\.txt$" . cmake-mode)
;; ("\\.cmake$" . cmake-mode))
;; (append '(("CMakeLists\\.txt\\'" . cmake-mode)
;; ("\\.cmake\\'" . cmake-mode))
;; auto-mode-alist))
;------------------------------------------------------------------------------