diff options
| author | Dan Nicolaescu | 2007-12-08 19:39:26 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-12-08 19:39:26 +0000 |
| commit | 62a7c35dbc53e79b828e2f0faffe36337e962114 (patch) | |
| tree | 7f49c8b7495c67a6f865351ced2ba650db0318aa | |
| parent | b68a96b966c7893316c6135764f6a04eb529d21e (diff) | |
| download | emacs-62a7c35dbc53e79b828e2f0faffe36337e962114.tar.gz emacs-62a7c35dbc53e79b828e2f0faffe36337e962114.zip | |
(auto-mode-alist): Recognize verilog files.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/files.el | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2295cab3b86..46db546954e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * files.el (auto-mode-alist): Recognize verilog files. | ||
| 4 | |||
| 3 | * progmodes/verilog-mode.el (verilog-string-replace-matches) | 5 | * progmodes/verilog-mode.el (verilog-string-replace-matches) |
| 4 | (verilog-string-remove-spaces, verilog-re-search-forward) | 6 | (verilog-string-remove-spaces, verilog-re-search-forward) |
| 5 | (verilog-re-search-backward, verilog-re-search-forward-quick) | 7 | (verilog-re-search-backward, verilog-re-search-forward-quick) |
diff --git a/lisp/files.el b/lisp/files.el index 6aff489e0a2..09d020533f5 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -1990,6 +1990,7 @@ since only a single case-insensitive search through the alist is made." | |||
| 1990 | ("\\.ds\\(ss\\)?l\\'" . dsssl-mode) | 1990 | ("\\.ds\\(ss\\)?l\\'" . dsssl-mode) |
| 1991 | ("\\.js\\'" . java-mode) ; javascript-mode would be better | 1991 | ("\\.js\\'" . java-mode) ; javascript-mode would be better |
| 1992 | ("\\.x[bp]m\\'" . c-mode) | 1992 | ("\\.x[bp]m\\'" . c-mode) |
| 1993 | ("\\.d?v\\'" . verilog-mode) | ||
| 1993 | ;; .emacs or .gnus or .viper following a directory delimiter in | 1994 | ;; .emacs or .gnus or .viper following a directory delimiter in |
| 1994 | ;; Unix, MSDOG or VMS syntax. | 1995 | ;; Unix, MSDOG or VMS syntax. |
| 1995 | ("[]>:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode) | 1996 | ("[]>:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode) |