diff options
| author | Juanma Barranquero | 2014-03-16 04:48:56 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-03-16 04:48:56 +0100 |
| commit | d939cbea79c40740333cf779296d94ee265eceb5 (patch) | |
| tree | cc17cd67449b83ad2a9d727b015808d71eadb110 | |
| parent | 57348c4d22dda72bf630fe02c679c6acdbe9c85d (diff) | |
| download | emacs-d939cbea79c40740333cf779296d94ee265eceb5.tar.gz emacs-d939cbea79c40740333cf779296d94ee265eceb5.zip | |
lisp/textmodes/css-mode.el: Fix typo in comment.
| -rw-r--r-- | lisp/textmodes/css-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index dbb4988501f..1a07269c9e9 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -237,7 +237,7 @@ | |||
| 237 | ;; FIXME: attribute selectors don't work well because they may contain | 237 | ;; FIXME: attribute selectors don't work well because they may contain |
| 238 | ;; strings which have already been highlighted as f-l-string-face and | 238 | ;; strings which have already been highlighted as f-l-string-face and |
| 239 | ;; thus prevent this highlighting from being applied (actually now that | 239 | ;; thus prevent this highlighting from being applied (actually now that |
| 240 | ;; I use `append' this should work better). But really the part of hte | 240 | ;; I use `append' this should work better). But really the part of the |
| 241 | ;; selector between [...] should simply not be highlighted. | 241 | ;; selector between [...] should simply not be highlighted. |
| 242 | (,(concat "^\\([ \t]*[^@:{}\n][^:{}]+\\(?::" (regexp-opt css-pseudo-ids t) | 242 | (,(concat "^\\([ \t]*[^@:{}\n][^:{}]+\\(?::" (regexp-opt css-pseudo-ids t) |
| 243 | "\\(?:([^)]+)\\)?[^:{\n]*\\)*\\)\\(?:\n[ \t]*\\)*{") | 243 | "\\(?:([^)]+)\\)?[^:{\n]*\\)*\\)\\(?:\n[ \t]*\\)*{") |