diff options
| author | Arni Magnusson | 2013-08-07 11:43:57 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2013-08-07 11:43:57 -0400 |
| commit | 400a3178cb749fe9cdbad59871aa0786babd434e (patch) | |
| tree | 94ae8e0a8c6dd7f72495749017d6a7e03fe253e7 /lisp/subr.el | |
| parent | 03eb60c17ad3abb221aaa71623ce837906836d49 (diff) | |
| download | emacs-400a3178cb749fe9cdbad59871aa0786babd434e.tar.gz emacs-400a3178cb749fe9cdbad59871aa0786babd434e.zip | |
* lisp/progmodes/dos.el: New file.
* lisp/generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
dos-mode.
Diffstat (limited to 'lisp/subr.el')
| -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 bdeee677471..43a9fc015b1 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2755,7 +2755,7 @@ Otherwise, return nil." | |||
| 2755 | (let ((def (indirect-function object t))) | 2755 | (let ((def (indirect-function object t))) |
| 2756 | (when (consp def) | 2756 | (when (consp def) |
| 2757 | (or (eq 'macro (car def)) | 2757 | (or (eq 'macro (car def)) |
| 2758 | (and (eq 'autoload (car def)) (memq (nth 4 def) '(macro t))))))) | 2758 | (and (autoloadp def) (memq (nth 4 def) '(macro t))))))) |
| 2759 | 2759 | ||
| 2760 | (defun field-at-pos (pos) | 2760 | (defun field-at-pos (pos) |
| 2761 | "Return the field at position POS, taking stickiness etc into account." | 2761 | "Return the field at position POS, taking stickiness etc into account." |