diff options
author | Francesco Potortì <pot@gnu.org> | 2002-01-21 12:49:11 +0000 |
---|---|---|
committer | Francesco Potortì <pot@gnu.org> | 2002-01-21 12:49:11 +0000 |
commit | 17f8ff6af5b109696bec223904500149ab15e880 (patch) | |
tree | 9d6eaee4c788a8d0ed76de18a03d05e80ce05238 | |
parent | 8cc0e0cfd802cc42c96e73ba9c67fa61fd52810b (diff) | |
download | emacs-17f8ff6af5b109696bec223904500149ab15e880.tar.gz |
* generic-x.el (apache-conf-generic-mode): Highlight the first
word in a line even if preceded by blanks.
-rw-r--r-- | lisp/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/generic-x.el | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1c167b4b7ab..f45da8fa8af 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-01-21 Francesco Potorti` <pot@gnu.org> + + * generic-x.el (apache-conf-generic-mode): Highlight the first + word in a line even if preceded by blanks. + 2002-01-21 Richard M. Stallman <rms@gnu.org> * window.el (window-body-height): Handle minibuffer window specially. @@ -128,7 +133,7 @@ * net/telnet.el (telnet-simple-send): Fix previous change. - * progmodes/sql.el (sql-escape-newlines-and-send) + * progmodes/sql.el (sql-escape-newlines-and-send) (sql-query-placeholders-and-send): Fix previous change. 2002-01-16 Colin Walters <walters@verbum.org> @@ -175,7 +180,7 @@ 2002-01-15 Richard M. Stallman <rms@gnu.org> - * emacs-lisp/autoload.el (make-autoload): + * emacs-lisp/autoload.el (make-autoload): Don't handle define-ibuffer-column, define-ibuffer-filter, define-ibuffer-sorter, and define-ibuffer-op. diff --git a/lisp/generic-x.el b/lisp/generic-x.el index e8412ce592c..1eb69f3693c 100644 --- a/lisp/generic-x.el +++ b/lisp/generic-x.el @@ -164,7 +164,7 @@ you must reload generic-x to enable the specified modes." (list ?#) nil '(("^\\s-*\\(<.*>\\)" 1 'font-lock-constant-face) - ("^\\(\\sw+\\)\\s-" 1 'font-lock-variable-name-face)) + ("^\\s-*\\(\\sw+\\)\\s-" 1 'font-lock-variable-name-face)) (list "srm\\.conf\\'" "httpd\\.conf\\'" "access\\.conf\\'") (list (function |