(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 c22ab99..379136e 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 ee35d00..5ec9b1f 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