diff options
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/css-mode.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/fill.el | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 19e0039ea53..5d5d787945d 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -1115,7 +1115,7 @@ to exclude some SCSS constructs." (goto-char start-point) (forward-comment (- (point))) (skip-chars-backward "@[:alpha:]") - (unless (looking-at-p "@\\(?:mixin\\|include\\)") + (unless (looking-at-p "@\\(mixin\\|include\\)") (cdr color))))) (defun css--compute-color (start-point match) diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 7d951ff16e8..c285491a305 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -900,12 +900,6 @@ region, instead of just filling the current paragraph." (equal hash (buffer-hash))) (set-buffer-modified-p nil))))) -(defun unfill-paragraph () - "That thing." - (interactive) - (let ((fill-column (/ most-positive-fixnum 2))) - (fill-paragraph))) - (declare-function comment-search-forward "newcomment" (limit &optional noerror)) (declare-function comment-string-strip "newcomment" (str beforep afterp)) |