aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-05-01 17:16:40 +0000
committerRichard M. Stallman1995-05-01 17:16:40 +0000
commit3b1142057780f2bc8fa0570c973f5eeafe6d5acb (patch)
tree44678210b94c37bbaf0083cc7c68c3ae39028a95
parenteb78a29127709f531d26dd84a5a65f125d2a5187 (diff)
downloademacs-3b1142057780f2bc8fa0570c973f5eeafe6d5acb.tar.gz
emacs-3b1142057780f2bc8fa0570c973f5eeafe6d5acb.zip
(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
-rw-r--r--lisp/progmodes/make-mode.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index ab5eb698c24..948b4900b1d 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -14,7 +14,7 @@
14 14
15;; So, for the meantime, this is not the default mode for makefiles. 15;; So, for the meantime, this is not the default mode for makefiles.
16 16
17;; $Id: makefile.el,v 1.18 1994/10/12 08:55:27 simon Exp rms $ 17;; $Id: makefile.el,v 1.19 1994/10/30 21:20:42 rms Exp rms $
18 18
19;; This file is part of GNU Emacs. 19;; This file is part of GNU Emacs.
20 20
@@ -505,6 +505,10 @@ makefile-special-targets-list:
505 (make-local-variable 'imenu-create-index-function) 505 (make-local-variable 'imenu-create-index-function)
506 (setq imenu-create-index-function 'makefile-menu-index-function) 506 (setq imenu-create-index-function 'makefile-menu-index-function)
507 507
508 ;; Dabbrev.
509 (make-local-variable 'dabbrev-abbrev-skip-leading-regexp)
510 (setq dabbrev-abbrev-skip-leading-regexp "\\$")
511
508 ;; Comment stuff. 512 ;; Comment stuff.
509 (make-local-variable 'comment-start) 513 (make-local-variable 'comment-start)
510 (setq comment-start "#") 514 (setq comment-start "#")