From: Dave Love Date: Wed, 2 Feb 2000 14:51:22 +0000 (+0000) Subject: (sexp-at-point, symbol-at-point) X-Git-Tag: emacs-pretest-21.0.90~5123 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=be64abcf66a59f892b077ef50becde97d57f32ea;p=emacs.git (sexp-at-point, symbol-at-point) (number-at-point, list-at-point): Add autoload cookie. --- diff --git a/lisp/thingatpt.el b/lisp/thingatpt.el index 6da92490653..214f6dcfde1 100644 --- a/lisp/thingatpt.el +++ b/lisp/thingatpt.el @@ -384,9 +384,13 @@ Signal an error if the entire string was not used." (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.