# HG changeset patch # User Simon Marshall # Date 781977808 0 # Node ID 07dd35326963a2034a39fa14da42130a510a94fd # Parent 114fe3739aa3196ee9c52393547555f17d9118a3 Removed setting of font-lock-keywords inadvertently left after last patch. diff -r 114fe3739aa3 -r 07dd35326963 lisp/progmodes/sh-script.el --- a/lisp/progmodes/sh-script.el Wed Oct 12 09:27:49 1994 +0000 +++ b/lisp/progmodes/sh-script.el Wed Oct 12 16:03:28 1994 +0000 @@ -827,11 +827,11 @@ sh-shell (intern (file-name-nondirectory sh-shell-path)) sh-shell-is-csh (memq sh-shell '(csh tcsh)) font-lock-defaults - (list (intern-soft (format "sh-%s-font-lock-keywords" sh-shell))) - font-lock-keywords (if (and font-lock-keywords - (boundp font-lock-keywords)) - (symbol-value font-lock-keywords) - sh-font-lock-keywords) + (let ((keywords (intern-soft (format "sh-%s-font-lock-keywords" + sh-shell)))) + (list (if (and keywords (boundp keywords)) + keywords + 'sh-font-lock-keywords))) comment-start-skip (if sh-shell-is-csh "\\(^\\|[^$]\\|\\$[^{]\\)#+[\t ]*" "\\(^\\|[^$]\\|\\$[^{]\\)\\B#+[\t ]*")