aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuri Linkov <[email protected]>2004-10-30 01:06:58 +0000
committerJuri Linkov <[email protected]>2004-10-30 01:06:58 +0000
commit95da5522bbfacdcda9c0ef0dd85387bbdcacc71b (patch)
tree183cd8fb4858401ff1d01a5e8b20e5d1c46c830e /lisp
parent707994d2626cf0f01c3ece4028d73835068d64dc (diff)
(variable-at-point): read -> intern.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/help-fns.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index 57b0b39767..8f2a1b7fa6 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -473,7 +473,7 @@ Return 0 if there is no such symbol."
(and (symbolp obj) (boundp obj) obj))))
(error nil))
(let* ((str (find-tag-default))
- (obj (if str (read str))))
+ (obj (if str (intern str))))
(and (symbolp obj) (boundp obj) obj))
0))