From: Simen Heggestøyl Date: Thu, 1 Jan 2015 16:19:02 +0000 (-0500) Subject: * lisp/textmodes/css-mode.el (scss-mode): Fix typo. X-Git-Tag: emacs-25.0.90~2612^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=935fa6151b3e411c5308d62338744ff25f1a8ddb;p=emacs.git * lisp/textmodes/css-mode.el (scss-mode): Fix typo. Fixes: debbugs:19446 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ca7a3c45818..7620a0730a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2015-01-01 Simen Heggestøyl (tiny change) + + * textmodes/css-mode.el (scss-mode): Fix typo (bug#19446). + 2014-12-31 Paul Eggert 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. diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 175964392e9..c171bd50f62 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -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 ;; 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)))