diff options
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 5e748895709..b4203fd7371 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1539,7 +1539,7 @@ configuration." | |||
| 1539 | (or (and (symbolp object) (fboundp object) | 1539 | (or (and (symbolp object) (fboundp object) |
| 1540 | (setq object (indirect-function object)) | 1540 | (setq object (indirect-function object)) |
| 1541 | (eq (car-safe object) 'autoload) | 1541 | (eq (car-safe object) 'autoload) |
| 1542 | (not (car-safe (cdr-safe (cdr-safe (cdr-safe (cdr object))))))) | 1542 | (not (car-safe (cdr-safe (cdr-safe (cdr-safe (cdr-safe object))))))) |
| 1543 | (subrp object) (byte-code-function-p object) | 1543 | (subrp object) (byte-code-function-p object) |
| 1544 | (eq (car-safe object) 'lambda))) | 1544 | (eq (car-safe object) 'lambda))) |
| 1545 | 1545 | ||