aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorArni Magnusson2013-08-07 11:43:57 -0400
committerStefan Monnier2013-08-07 11:43:57 -0400
commit400a3178cb749fe9cdbad59871aa0786babd434e (patch)
tree94ae8e0a8c6dd7f72495749017d6a7e03fe253e7 /lisp/subr.el
parent03eb60c17ad3abb221aaa71623ce837906836d49 (diff)
downloademacs-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.el2
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."