diff options
| author | Stefan Monnier | 2014-01-03 17:38:55 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2014-01-03 17:38:55 -0500 |
| commit | e18b70fc27fbcdbf44a2f819360104c3eb85e805 (patch) | |
| tree | 10d3c7fbf28abf6ec8f976fbae57a6792927ee34 | |
| parent | e9c04e8bf2a24811a1c335b826816055b6bbf5dc (diff) | |
| download | emacs-e18b70fc27fbcdbf44a2f819360104c3eb85e805.tar.gz emacs-e18b70fc27fbcdbf44a2f819360104c3eb85e805.zip | |
* lisp/emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
syntax-begin-function.
Fixes: debbugs:16247
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index df00ef0bacf..c76eaceba78 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with | ||
| 4 | syntax-begin-function (bug#16247). | ||
| 5 | |||
| 1 | 2014-01-03 Chong Yidong <cyd@gnu.org> | 6 | 2014-01-03 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs-lisp/nadvice.el (advice--make-docstring): Change args. | 8 | * emacs-lisp/nadvice.el (advice--make-docstring): Change args. |
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 8431dc21b15..1e76ebb1873 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -460,7 +460,7 @@ font-lock keywords will not be case sensitive." | |||
| 460 | (setq-local comment-use-global-state t) | 460 | (setq-local comment-use-global-state t) |
| 461 | (setq-local imenu-generic-expression lisp-imenu-generic-expression) | 461 | (setq-local imenu-generic-expression lisp-imenu-generic-expression) |
| 462 | (setq-local multibyte-syntax-as-symbol t) | 462 | (setq-local multibyte-syntax-as-symbol t) |
| 463 | (setq-local syntax-begin-function 'beginning-of-defun) | 463 | ;; (setq-local syntax-begin-function 'beginning-of-defun) ;;Bug#16247. |
| 464 | (setq font-lock-defaults | 464 | (setq font-lock-defaults |
| 465 | `(,(if elisp '(lisp-el-font-lock-keywords | 465 | `(,(if elisp '(lisp-el-font-lock-keywords |
| 466 | lisp-el-font-lock-keywords-1 | 466 | lisp-el-font-lock-keywords-1 |