]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
authorRichard M. Stallman <rms@gnu.org>
Mon, 1 May 1995 17:16:40 +0000 (17:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 1 May 1995 17:16:40 +0000 (17:16 +0000)
lisp/progmodes/make-mode.el

index ab5eb698c24cffdc8760586fbef67e1adc3f02ec..948b4900b1d3c3b7fb8b4e9f6f9da5b39268fdb2 100644 (file)
@@ -14,7 +14,7 @@
 
 ;; So, for the meantime, this is not the default mode for makefiles.
 
-;; $Id: makefile.el,v 1.18 1994/10/12 08:55:27 simon Exp rms $
+;; $Id: makefile.el,v 1.19 1994/10/30 21:20:42 rms Exp rms $
 
 ;; This file is part of GNU Emacs.
 
@@ -505,6 +505,10 @@ makefile-special-targets-list:
   (make-local-variable 'imenu-create-index-function)
   (setq imenu-create-index-function 'makefile-menu-index-function)
 
+  ;; Dabbrev.
+  (make-local-variable 'dabbrev-abbrev-skip-leading-regexp)
+  (setq dabbrev-abbrev-skip-leading-regexp "\\$")
+
   ;; Comment stuff.
   (make-local-variable 'comment-start)
   (setq comment-start "#")