diff options
| author | Simon Marshall | 1994-10-12 16:03:28 +0000 |
|---|---|---|
| committer | Simon Marshall | 1994-10-12 16:03:28 +0000 |
| commit | c4ca8d660fcd3e2472e6fde9009d6ea723129fac (patch) | |
| tree | 9f1c8a74ea02baa8e8f195371b92f437b5707746 /lisp/progmodes | |
| parent | 95132d1c301e0eca501c4a3db9bed7cede74b81c (diff) | |
| download | emacs-c4ca8d660fcd3e2472e6fde9009d6ea723129fac.tar.gz emacs-c4ca8d660fcd3e2472e6fde9009d6ea723129fac.zip | |
Removed setting of font-lock-keywords inadvertently left after last patch.
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/sh-script.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 260c31186e2..c04a31607da 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el | |||
| @@ -827,11 +827,11 @@ Calls the value of `sh-set-shell-hook' if set." | |||
| 827 | sh-shell (intern (file-name-nondirectory sh-shell-path)) | 827 | sh-shell (intern (file-name-nondirectory sh-shell-path)) |
| 828 | sh-shell-is-csh (memq sh-shell '(csh tcsh)) | 828 | sh-shell-is-csh (memq sh-shell '(csh tcsh)) |
| 829 | font-lock-defaults | 829 | font-lock-defaults |
| 830 | (list (intern-soft (format "sh-%s-font-lock-keywords" sh-shell))) | 830 | (let ((keywords (intern-soft (format "sh-%s-font-lock-keywords" |
| 831 | font-lock-keywords (if (and font-lock-keywords | 831 | sh-shell)))) |
| 832 | (boundp font-lock-keywords)) | 832 | (list (if (and keywords (boundp keywords)) |
| 833 | (symbol-value font-lock-keywords) | 833 | keywords |
| 834 | sh-font-lock-keywords) | 834 | 'sh-font-lock-keywords))) |
| 835 | comment-start-skip (if sh-shell-is-csh | 835 | comment-start-skip (if sh-shell-is-csh |
| 836 | "\\(^\\|[^$]\\|\\$[^{]\\)#+[\t ]*" | 836 | "\\(^\\|[^$]\\|\\$[^{]\\)#+[\t ]*" |
| 837 | "\\(^\\|[^$]\\|\\$[^{]\\)\\B#+[\t ]*") | 837 | "\\(^\\|[^$]\\|\\$[^{]\\)\\B#+[\t ]*") |