From 38c979d349eb874f66f42f644b736efe541bbc05 Mon Sep 17 00:00:00 2001 From: Simon Marshall Date: Thu, 29 May 1997 07:04:00 +0000 Subject: [PATCH] Update for syntax-table text properties. sh-script.el now directs font-lock.el to add them to instances of # which are not comments. --- lisp/progmodes/sh-script.el | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 3124d59bffb..a6fb80bc5ae 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -224,7 +224,6 @@ the car and cdr are the same symbol.") ?\" "\"\"" ?\' "\"'" ?\` "\"`" - ?$ "\\" ; `escape' so $# doesn't start a comment ?! "_" ?% "_" ?: "_" @@ -605,15 +604,18 @@ See `sh-feature'.") '("\\\\[^A-Za-z0-9]" 0 font-lock-string-face) '("\\${?\\([A-Za-z_][A-Za-z0-9_]*\\|[0-9]+\\|[$*_]\\)" 1 font-lock-variable-name-face))) - "*Rules for highlighting shell scripts. See `sh-feature'.") + "Default expressions to highlight in Shell Script modes. See `sh-feature'.") (defvar sh-font-lock-keywords-1 '((sh "[ \t]in\\>")) - "*Additional rules for highlighting shell scripts. See `sh-feature'.") + "Subdued level highlighting for Shell Script modes.") (defvar sh-font-lock-keywords-2 () - "*Yet more rules for highlighting shell scripts. See `sh-feature'.") + "Gaudy level highlighting for Shell Script modes.") +(defconst sh-font-lock-syntactic-keywords + ;; Mark a `#' character as having punctuation syntax in a variable reference. + '(("\\$[({]?\\(#\\)" 1 (1 . nil)))) ;; mode-command and utility functions @@ -709,12 +711,11 @@ with your script for an edit-interpret-debug cycle." ;; we can't look if previous line ended with `\' comint-prompt-regexp "^[ \t]*" font-lock-defaults - `((sh-font-lock-keywords - sh-font-lock-keywords-1 - sh-font-lock-keywords-2) - nil nil - ((?/ . "w") (?~ . "w") (?. . "w") (?- . "w") (?_ . "w")) nil - (font-lock-comment-start-regexp . "#")) + '((sh-font-lock-keywords + sh-font-lock-keywords-1 sh-font-lock-keywords-2) + nil nil + ((?/ . "w") (?~ . "w") (?. . "w") (?- . "w") (?_ . "w")) nil + (font-lock-syntactic-keywords . sh-font-lock-syntactic-keywords)) skeleton-pair-alist '((?` _ ?`)) skeleton-pair-filter 'sh-quoted-p skeleton-further-elements '((< '(- (min sh-indentation @@ -727,8 +728,7 @@ with your script for an edit-interpret-debug cycle." (save-excursion (goto-char (point-min)) (if (looking-at "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)") - (buffer-substring (match-beginning 2) - (match-end 2)))))) + (match-string 2))))) (if interpreter (sh-set-shell interpreter nil nil) ;; If we don't know the shell for this file, -- 2.39.2