diff options
| author | Juri Linkov | 2004-10-30 01:08:00 +0000 |
|---|---|---|
| committer | Juri Linkov | 2004-10-30 01:08:00 +0000 |
| commit | d6288299d325714ac74a6cd792c9132e49b415a0 (patch) | |
| tree | c22021c6f3997431b56fe5d185fbc1561d732520 | |
| parent | 95da5522bbfacdcda9c0ef0dd85387bbdcacc71b (diff) | |
| download | emacs-d6288299d325714ac74a6cd792c9132e49b415a0.tar.gz emacs-d6288299d325714ac74a6cd792c9132e49b415a0.zip | |
(function-called-at-point): read -> intern.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/help.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c22ab994eff..379136ee0a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-10-30 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * help.el (function-called-at-point): | ||
| 4 | * help-fns.el (variable-at-point): read -> intern. | ||
| 5 | |||
| 1 | 2004-10-30 Simon Josefsson <jas@extundo.com> | 6 | 2004-10-30 Simon Josefsson <jas@extundo.com> |
| 2 | 7 | ||
| 3 | * progmodes/autoconf.el (autoconf-font-lock-keywords): Recognize | 8 | * 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." | |||
| 267 | (and (symbolp obj) (fboundp obj) obj)))) | 267 | (and (symbolp obj) (fboundp obj) obj)))) |
| 268 | (error nil)))) | 268 | (error nil)))) |
| 269 | (let* ((str (find-tag-default)) | 269 | (let* ((str (find-tag-default)) |
| 270 | (obj (if str (read str)))) | 270 | (obj (if str (intern str)))) |
| 271 | (and (symbolp obj) (fboundp obj) obj)))) | 271 | (and (symbolp obj) (fboundp obj) obj)))) |
| 272 | 272 | ||
| 273 | 273 | ||