]> git.eshelyaron.com Git - emacs.git/commitdiff
(function-called-at-point): read -> intern.
authorJuri Linkov <juri@jurta.org>
Sat, 30 Oct 2004 01:08:00 +0000 (01:08 +0000)
committerJuri Linkov <juri@jurta.org>
Sat, 30 Oct 2004 01:08:00 +0000 (01:08 +0000)
lisp/ChangeLog
lisp/help.el

index c22ab994eff4cff364c325ff948685b87f1a9830..379136ee0a662f11dc4ced964aa806cf1f4806aa 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-30  Juri Linkov  <juri@jurta.org>
+
+       * help.el (function-called-at-point):
+       * help-fns.el (variable-at-point): read -> intern.
+
 2004-10-30  Simon Josefsson  <jas@extundo.com>
 
        * progmodes/autoconf.el (autoconf-font-lock-keywords): Recognize
index ee35d007639623b0b53656a4cbf75629f66e0c92..5ec9b1f529926aeed94cf701b88116a6554cd46c 100644 (file)
@@ -267,7 +267,7 @@ If that doesn't give a function, return nil."
                      (and (symbolp obj) (fboundp obj) obj))))
              (error nil))))
       (let* ((str (find-tag-default))
-            (obj (if str (read str))))
+            (obj (if str (intern str))))
        (and (symbolp obj) (fboundp obj) obj))))
 
 \f