* lisp/textmodes/css-mode.el (scss-mode): Fix typo.

Fixes: debbugs:19446
This commit is contained in:
Simen Heggestøyl 2015-01-01 11:19:02 -05:00 committed by Stefan Monnier
parent 17263d5184
commit 935fa6151b
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2015-01-01 Simen Heggestøyl <simenheg@gmail.com> (tiny change)
* textmodes/css-mode.el (scss-mode): Fix typo (bug#19446).
2014-12-31 Paul Eggert <eggert@cs.ucla.edu>
Less 'make' chatter in lisp directory
@ -22781,7 +22785,7 @@ See ChangeLog.16 for earlier changes.
;; coding: utf-8
;; End:
Copyright (C) 2011-2014 Free Software Foundation, Inc.
Copyright (C) 2011-2015 Free Software Foundation, Inc.
This file is part of GNU Emacs.

View file

@ -1,6 +1,6 @@
;;; css-mode.el --- Major mode to edit CSS files -*- lexical-binding: t -*-
;; Copyright (C) 2006-2014 Free Software Foundation, Inc.
;; Copyright (C) 2006-2015 Free Software Foundation, Inc.
;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
;; Keywords: hypermedia
@ -459,7 +459,7 @@
"Major mode to edit \"Sassy CSS\" files."
(setq-local comment-start "// ")
(setq-local comment-end "")
(setq-local comment-start-skip "/[*/]+[ t]*")
(setq-local comment-start-skip "/[*/]+[ \t]*")
(setq-local comment-end-skip "[ \t]*\\(?:\n\\|\\*+/\\)")
(setq-local font-lock-defaults '(scss-font-lock-keywords nil t)))