diff options
| author | Lars Ingebrigtsen | 2021-09-13 09:39:45 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-09-13 09:39:45 +0200 |
| commit | 173c2ea8a39fbc10533c3fb390f66af302b23977 (patch) | |
| tree | ce2f35f865b8be73dc727b6d9bf14bccbad5c758 | |
| parent | c1a13395260ac5d06b5cf4c75aa318653db6f812 (diff) | |
| download | emacs-173c2ea8a39fbc10533c3fb390f66af302b23977.tar.gz emacs-173c2ea8a39fbc10533c3fb390f66af302b23977.zip | |
Fix detection of char regions in print-fontset-element
* lisp/international/mule-diag.el (print-fontset-element): Fix the
regexp for "foo .. bar " (bug#50519).
| -rw-r--r-- | lisp/international/mule-diag.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index 864cd3ce01e..862c577bd5d 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el | |||
| @@ -882,7 +882,7 @@ The IGNORED argument is ignored." | |||
| 882 | ;; the current line. | 882 | ;; the current line. |
| 883 | (beginning-of-line) | 883 | (beginning-of-line) |
| 884 | (let ((from (mule--kbd-at (point))) | 884 | (let ((from (mule--kbd-at (point))) |
| 885 | (to (if (looking-at "[^.]*[.]* ") | 885 | (to (if (looking-at "[^.]+[.][.] ") |
| 886 | (mule--kbd-at (match-end 0))))) | 886 | (mule--kbd-at (match-end 0))))) |
| 887 | (if (re-search-forward "[ \t]*$" nil t) | 887 | (if (re-search-forward "[ \t]*$" nil t) |
| 888 | (delete-region (match-beginning 0) (match-end 0))) | 888 | (delete-region (match-beginning 0) (match-end 0))) |