# HG changeset patch # User Stefan Monnier # Date 1005181077 0 # Node ID b10e7d6fb95b3d7704354720e6789566d30e9e54 # Parent fc4031bddb2f87f98028ac3df08b499afc47ae48 (with-local-quit): New macro. (make-syntax-table): Always inherit. (functionp): Be more careful when `object' is a symbol. diff -r fc4031bddb2f -r b10e7d6fb95b lisp/subr.el --- a/lisp/subr.el Thu Nov 08 00:31:14 2001 +0000 +++ b/lisp/subr.el Thu Nov 08 00:57:57 2001 +0000 @@ -35,6 +35,8 @@ ;;;; Lisp language features. +(defalias 'not 'null) + (defmacro lambda (&rest cdr) "Return a lambda expression. A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is @@ -664,7 +666,6 @@ (defalias 'string= 'string-equal) (defalias 'string< 'string-lessp) (defalias 'move-marker 'set-marker) -(defalias 'not 'null) (defalias 'rplaca 'setcar) (defalias 'rplacd 'setcdr) (defalias 'beep 'ding) ;preserve lingual purity @@ -1204,6 +1205,13 @@ (buffer-string) (kill-buffer nil))))) +(defmacro with-local-quit (&rest body) + "Execute BODY with `inhibit-quit' temporarily bound to nil." + `(condition-case nil + (let ((inhibit-quit nil)) + ,@body) + (quit (setq quit-flag t)))) + (defmacro combine-after-change-calls (&rest body) "Execute BODY, but don't call the after-change functions till the end. If BODY makes changes in the buffer, they are recorded @@ -1445,14 +1453,11 @@ (defun make-syntax-table (&optional oldtable) "Return a new syntax table. -If OLDTABLE is non-nil, copy OLDTABLE. -Otherwise, create a syntax table which inherits from the -`standard-syntax-table'." - (if oldtable - (copy-syntax-table oldtable) - (let ((table (make-char-table 'syntax-table nil))) - (set-char-table-parent table (standard-syntax-table)) - table))) +Create a syntax table which inherits from OLDTABLE (if non-nil) or +from `standard-syntax-table' otherwise." + (let ((table (make-char-table 'syntax-table nil))) + (set-char-table-parent table (or oldtable (standard-syntax-table))) + table)) (defun add-to-invisibility-spec (arg) "Add elements to `buffer-invisibility-spec'. @@ -1528,10 +1533,12 @@ (eq (car object) 'frame-configuration))) (defun functionp (object) - "Non-nil if OBJECT is a type of object that can be called as a function." - (or (subrp object) (byte-code-function-p object) - (eq (car-safe object) 'lambda) - (and (symbolp object) (fboundp object)))) + "Non-nil iff OBJECT is a type of object that can be called as a function." + (or (and (symbolp object) (setq object (indirect-function object)) + (eq (car-safe object) 'autoload) + (not (car-safe (cdr-safe (cdr-safe (cdr-safe (cdr-safe object))))))) + (subrp object) (byte-code-function-p object) + (eq (car-safe object) 'lambda))) (defun interactive-form (function) "Return the interactive form of FUNCTION.