diff options
Diffstat (limited to 'lisp/cedet/semantic/edit.el')
-rw-r--r-- | lisp/cedet/semantic/edit.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el index 7cb6768f7e1..4efc283520f 100644 --- a/lisp/cedet/semantic/edit.el +++ b/lisp/cedet/semantic/edit.el @@ -128,11 +128,9 @@ If nil, errors are still displayed, but informative messages are not." "Provide a mechanism for semantic tag management. Argument START, END, and LENGTH specify the bounds of the change." (setq semantic-unmatched-syntax-cache-check t) - (let ((inhibit-point-motion-hooks t) - ) - (save-match-data - (run-hook-with-args 'semantic-change-functions start end length) - ))) + (save-match-data + (run-hook-with-args 'semantic-change-functions start end length) + )) (defun semantic-changes-in-region (start end &optional buffer) "Find change overlays which exist in whole or in part between START and END. |