Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
82882188
Commit
82882188
authored
Oct 05, 2009
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(describe-function-1): Don't burp is the function is not a symbol.
parent
a8f316ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
lisp/ChangeLog
lisp/ChangeLog
+9
-4
lisp/help-fns.el
lisp/help-fns.el
+3
-1
No files found.
lisp/ChangeLog
View file @
82882188
2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
* help-fns.el (describe-function-1): Don't burp is the function is not
a symbol.
2009-10-05 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
...
...
@@ -54,8 +59,8 @@
2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
* vc-hg.el (log-view-vc-backend): Declare for compiler.
(vc-hg-outgoing-mode, vc-hg-incoming-mode):
Set
log-view-vc-backend so that diff can work.
(vc-hg-outgoing-mode, vc-hg-incoming-mode):
Set
log-view-vc-backend so that diff can work.
* log-view.el (log-view-diff): Use vc-diff-internal instead of
vc-version-diff.
...
...
@@ -74,8 +79,8 @@
(copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
* net/tramp.el (tramp-verbose): Fix docstring.
(tramp-methods): Add recursive option to `tramp-copy-args'.
Add
`tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
(tramp-methods): Add recursive option to `tramp-copy-args'.
Add
`tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
"scp1_old", "scp2_old", "rsync", "rsyncc".
(tramp-default-method): Check also for `auth-source-user-or-password'.
(tramp-file-name-handler-alist, tramp-file-name-for-operation):
...
...
lisp/help-fns.el
View file @
82882188
...
...
@@ -457,7 +457,9 @@ suitable file is found, return nil."
(
terpri
)))))
;; Note that list* etc do not get this property until
;; cl-hack-byte-compiler runs, after bytecomp is loaded.
(
when
(
eq
(
get
function
'byte-compile
)
'cl-byte-compile-compiler-macro
)
(
when
(
and
(
symbolp
function
)
(
eq
(
get
function
'byte-compile
)
'cl-byte-compile-compiler-macro
))
(
princ
"This function has a compiler macro"
)
(
let
((
lib
(
get
function
'compiler-macro-file
)))
(
when
(
stringp
lib
)
...
...
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