Mercurial > hg > xemacs-beta
comparison lisp/modes/m4-mode.el @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | 0293115a14e9 |
children | 6a378aca36af |
comparison
equal
deleted
inserted
replaced
69:804d1389bcd6 | 70:131b0175ea99 |
---|---|
26 ;; A smart editing mode for m4 macro definitions. It seems to have most of the | 26 ;; A smart editing mode for m4 macro definitions. It seems to have most of the |
27 ;; syntax right (sexp motion commands work, but function motion commands don't). | 27 ;; syntax right (sexp motion commands work, but function motion commands don't). |
28 ;; It also sets the font-lock syntax stuff for colorization | 28 ;; It also sets the font-lock syntax stuff for colorization |
29 | 29 |
30 ;; By Drew Csillag (drew@staff.prodigy.com) | 30 ;; By Drew Csillag (drew@staff.prodigy.com) |
31 ;; $Id: m4-mode.el,v 1.2 1997/02/02 05:05:40 steve Exp $ | 31 ;; $Id: m4-mode.el,v 1.1.1.1 1996/12/18 22:42:49 steve Exp $ |
32 | 32 |
33 ;; History: | 33 ;; History: |
34 | 34 |
35 ;; Date Version Who Action | 35 ;; Date Version Who Action |
36 ;; -------- ------- --- ---- | 36 ;; -------- ------- --- ---- |
67 ;;; to Akim Demaille and Terry Jones for the bug reports | 67 ;;; to Akim Demaille and Terry Jones for the bug reports |
68 | 68 |
69 ;;; Code: | 69 ;;; Code: |
70 | 70 |
71 ;;path to the m4 program | 71 ;;path to the m4 program |
72 (defvar m4-program "/usr/bin/m4") | 72 (defvar m4-program "/usr/local/bin/m4") |
73 | 73 |
74 ;;thank god for make-regexp.el! | 74 ;;thank god for make-regexp.el! |
75 (defvar m4-font-lock-keywords | 75 (defvar m4-font-lock-keywords |
76 `( | 76 `( |
77 ("^\\\#.*" . font-lock-comment-face) | 77 ("^\\\#.*" . font-lock-comment-face) |