Mercurial > emacs
changeset 11638:2b1d5f2e99cc
(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 01 May 1995 17:16:40 +0000 |
parents | dfdae6cd817e |
children | 462d55b84265 |
files | lisp/progmodes/make-mode.el |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/make-mode.el Mon May 01 15:52:55 1995 +0000 +++ b/lisp/progmodes/make-mode.el Mon May 01 17:16:40 1995 +0000 @@ -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 @@ (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 "#")