Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7c09e2e3
Commit
7c09e2e3
authored
Dec 29, 1993
by
Richard M. Stallman
Browse files
(super-apropos-check-doc-file): Verify that the doc
string can actually be found from the symbol.
parent
ca10c3d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
lisp/apropos.el
lisp/apropos.el
+7
-4
No files found.
lisp/apropos.el
View file @
7c09e2e3
...
...
@@ -153,10 +153,13 @@ Returns list of symbols and documentation found."
(
1-
(
point
))
(
point
))))
item
(
assq
symbol
sym-list
))
(
or
item
(
setq
item
(
list
symbol
nil
nil
)
sym-list
(
cons
item
sym-list
)))
(
setcar
(
nthcdr
type
item
)
doc
)))
(
and
(
if
(
=
type
1
)
(
documentation
symbol
)
(
documentation-property
symbol
'variable-documentation
))
(
or
item
(
setq
item
(
list
symbol
nil
nil
)
sym-list
(
cons
item
sym-list
)))
(
setcar
(
nthcdr
type
item
)
doc
))))
sym-list
))
;; This is passed as the argument to map-atoms, so it is called once for every
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment