From d6288299d325714ac74a6cd792c9132e49b415a0 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sat, 30 Oct 2004 01:08:00 +0000 Subject: [PATCH] (function-called-at-point): read -> intern. --- lisp/ChangeLog | 5 +++++ lisp/help.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c22ab994eff..379136ee0a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-10-30 Juri Linkov + + * help.el (function-called-at-point): + * help-fns.el (variable-at-point): read -> intern. + 2004-10-30 Simon Josefsson * progmodes/autoconf.el (autoconf-font-lock-keywords): Recognize diff --git a/lisp/help.el b/lisp/help.el index ee35d007639..5ec9b1f5299 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -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)))) -- 2.39.5