diff options
| author | Richard M. Stallman <rms@gnu.org> | 1992-07-24 05:00:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1992-07-24 05:00:23 +0000 |
| commit | e6dfdce5163f8de5b0acb804d94e7b81f609cf90 (patch) | |
| tree | 3e1ec38a0412ec8884dc0b17e0e91f9751af57eb /lisp/subr.el | |
| parent | 3e95679ecc30375da1c94e84c6610a42944b680e (diff) | |
| download | emacs-e6dfdce5163f8de5b0acb804d94e7b81f609cf90.tar.gz | |
*** empty log message ***
Diffstat (limited to 'lisp/subr.el')
| -rw-r--r-- | lisp/subr.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index aee62d11f94..c485e98c608 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -312,16 +312,16 @@ This makes or adds to an entry on `after-load-alist'. FILE should be the name of a library, with no directory name." (eval-after-load file (read))) -(defmacro defun-inline (name args &rest body) - "Create an \"inline defun\" (actually a macro). -Use just like `defun'." - (nconc (list 'defmacro name '(&rest args)) - (if (stringp (car body)) - (prog1 (list (car body)) - (setq body (or (cdr body) body)))) - (list (list 'cons (list 'quote - (cons 'lambda (cons args body))) - 'args)))) +;;(defmacro defun-inline (name args &rest body) +;; "Create an \"inline defun\" (actually a macro). +;;Use just like `defun'." +;; (nconc (list 'defmacro name '(&rest args)) +;; (if (stringp (car body)) +;; (prog1 (list (car body)) +;; (setq body (or (cdr body) body)))) +;; (list (list 'cons (list 'quote +;; (cons 'lambda (cons args body))) +;; 'args)))) (defun user-original-login-name () "Return user's login name from original login. |
