mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +00:00
*** empty log message ***
This commit is contained in:
parent
dcfdbac7bb
commit
ecb7594297
@ -228,12 +228,13 @@ or properties are considered."
|
||||
(interactive)
|
||||
(let* ((end (point))
|
||||
(buffer-syntax (syntax-table))
|
||||
(beg (save-excursion
|
||||
(set-syntax-table lisp-mode-syntax-table)
|
||||
(backward-sexp 1)
|
||||
(while (= (char-syntax (following-char)) ?\')
|
||||
(forward-char 1))
|
||||
(point)
|
||||
(beg (unwind-protect
|
||||
(save-excursion
|
||||
(set-syntax-table emacs-lisp-mode-syntax-table)
|
||||
(backward-sexp 1)
|
||||
(while (= (char-syntax (following-char)) ?\')
|
||||
(forward-char 1))
|
||||
(point))
|
||||
(set-syntax-table buffer-syntax)))
|
||||
(pattern (buffer-substring beg end))
|
||||
(predicate
|
||||
|
Loading…
Reference in New Issue
Block a user