diff options
| -rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index c31036f02ed..453bef5ecbb 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el | |||
| @@ -50,6 +50,8 @@ The return value of this function is not used." | |||
| 50 | (put macro 'lisp-indent-function (car (cdr d)))) | 50 | (put macro 'lisp-indent-function (car (cdr d)))) |
| 51 | ((and (consp d) (eq (car d) 'debug)) | 51 | ((and (consp d) (eq (car d) 'debug)) |
| 52 | (put macro 'edebug-form-spec (car (cdr d)))) | 52 | (put macro 'edebug-form-spec (car (cdr d)))) |
| 53 | ((and (consp d) (eq (car d) 'doc-string)) | ||
| 54 | (put macro 'doc-string-elt (car (cdr d)))) | ||
| 53 | (t | 55 | (t |
| 54 | (message "Unknown declaration %s" d)))))) | 56 | (message "Unknown declaration %s" d)))))) |
| 55 | 57 | ||