Mercurial > emacs
changeset 27581:96a11db0c25c
(sexp-at-point, symbol-at-point)
(number-at-point, list-at-point): Add autoload cookie.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 02 Feb 2000 14:51:22 +0000 |
parents | b84ee89aaf37 |
children | 42b52d8b6703 |
files | lisp/thingatpt.el |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/thingatpt.el Wed Feb 02 14:46:06 2000 +0000 +++ b/lisp/thingatpt.el Wed Feb 02 14:51:22 2000 +0000 @@ -384,9 +384,13 @@ (error nil)))) (if (or (not pred) (funcall pred sexp)) sexp))) +;;;###autoload (defun sexp-at-point () (form-at-point 'sexp)) +;;;###autoload (defun symbol-at-point () (form-at-point 'sexp 'symbolp)) +;;;###autoload (defun number-at-point () (form-at-point 'sexp 'numberp)) +;;;###autoload (defun list-at-point () (form-at-point 'list 'listp)) ;; thingatpt.el ends here.