diff options
| author | Stefan Monnier | 2019-06-26 10:03:48 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2019-06-26 10:03:48 -0400 |
| commit | 698ff554ac2699ec48fefc85a1307cbc4a183b0d (patch) | |
| tree | a7b7592f7973f81cad4410366d313e790616907e /lisp/textmodes | |
| parent | 9233865b7005831e63755eb84ae7da060f878a55 (diff) | |
| download | emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.tar.gz emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.zip | |
* lisp/calc/calc-ext.el (math-scalarp): Fix typo
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, 7 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 5d5d787945d..19e0039ea53 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -1115,7 +1115,7 @@ to exclude some SCSS constructs." | |||
| 1115 | (goto-char start-point) | 1115 | (goto-char start-point) |
| 1116 | (forward-comment (- (point))) | 1116 | (forward-comment (- (point))) |
| 1117 | (skip-chars-backward "@[:alpha:]") | 1117 | (skip-chars-backward "@[:alpha:]") |
| 1118 | (unless (looking-at-p "@\\(mixin\\|include\\)") | 1118 | (unless (looking-at-p "@\\(?:mixin\\|include\\)") |
| 1119 | (cdr color))))) | 1119 | (cdr color))))) |
| 1120 | 1120 | ||
| 1121 | (defun css--compute-color (start-point match) | 1121 | (defun css--compute-color (start-point match) |
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index c285491a305..7d951ff16e8 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -900,6 +900,12 @@ region, instead of just filling the current paragraph." | |||
| 900 | (equal hash (buffer-hash))) | 900 | (equal hash (buffer-hash))) |
| 901 | (set-buffer-modified-p nil))))) | 901 | (set-buffer-modified-p nil))))) |
| 902 | 902 | ||
| 903 | (defun unfill-paragraph () | ||
| 904 | "That thing." | ||
| 905 | (interactive) | ||
| 906 | (let ((fill-column (/ most-positive-fixnum 2))) | ||
| 907 | (fill-paragraph))) | ||
| 908 | |||
| 903 | (declare-function comment-search-forward "newcomment" (limit &optional noerror)) | 909 | (declare-function comment-search-forward "newcomment" (limit &optional noerror)) |
| 904 | (declare-function comment-string-strip "newcomment" (str beforep afterp)) | 910 | (declare-function comment-string-strip "newcomment" (str beforep afterp)) |
| 905 | 911 | ||