2009-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
+ * progmodes/sh-script.el (sh-font-lock-quoted-subshell): ' inside
+ a "..." does not quote anything.
+
* textmodes/rst.el (rst-mode-abbrev-table): Mark entries as `system'.
2009-02-19 Andreas Schwab <schwab@suse.de>
(< (point) limit)))
;; unescape " inside a $( ... ) construct.
(case (char-after)
- (?\' (forward-char 1) (skip-chars-forward "^'" limit))
+ (?\' (case state
+ (double-quote nil)
+ (t (forward-char 1) (skip-chars-forward "^'" limit))))
(?\\ (forward-char 1))
(?\" (case state
(double-quote (setq state (pop states)))