diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2020-10-15 11:46:49 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2020-10-15 11:46:49 +0200 |
commit | 674fee5e9fb70d83d9408ebc01d8c15bd641663c (patch) | |
tree | b65956f212508b7e986966fad05d9b23502d5c98 | |
parent | 2970d73a71d3c1dff016e98263c0becd12bf1781 (diff) | |
download | emacs-674fee5e9fb70d83d9408ebc01d8c15bd641663c.tar.gz emacs-674fee5e9fb70d83d9408ebc01d8c15bd641663c.tar.bz2 emacs-674fee5e9fb70d83d9408ebc01d8c15bd641663c.zip |
Remove dynamic declaration of 'save-match-data-internal'
* lisp/subr.el: Remove defvar which has no relevance today; it can
very well be a lexical variable.
-rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 867c9f0bfbb..b7a746f2db0 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -886,10 +886,6 @@ side-effects, and the argument LIST is not modified." ;;;; Keymap support. -;; Declare before first use of `save-match-data', -;; where it is used internally. -(defvar save-match-data-internal) - (defun kbd (keys) "Convert KEYS to the internal Emacs key representation. KEYS should be a string in the format returned by commands such |