1
0
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:
Richard M. Stallman 1990-11-12 22:03:33 +00:00
parent dcfdbac7bb
commit ecb7594297

View File

@ -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