[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Compiler warnings on Windows - gnus/*.el (was: strange code in ediff-hoo
From: |
Reiner Steib |
Subject: |
Compiler warnings on Windows - gnus/*.el (was: strange code in ediff-hook.el) |
Date: |
Sun, 09 Mar 2008 12:34:31 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) |
On Sun, Mar 09 2008, Juanma Barranquero wrote:
> C:\emacs> grep Warning bootstrap.log
[...]
> gnus-util.el:1608:18:Warning: `w32-focus-frame' is an obsolete function (as of
In `gnus-select-frame-set-input-focus': It is only used in Emacs 21.
Shouldn't this warning be suppressed by `declare-function' in Emacs 23?
,----[ gnus-util.el ]
| (declare-function w32-focus-frame "../term/w32-win" (frame))
|
| (defun gnus-select-frame-set-input-focus (frame)
`----
> gnus-uu.el:2177:1:Warning: the function `make-symbolic-link' is not known to
Emacs on Windows doesn't seem to define `make-symbolic-link'. Would
it make sense to signal an error like this...
(unless (fboundp 'make-symbolic-link)
(defun make-symbolic-link (filename linkname &optional ok-if-already-exists)
(error "`make-symbolic-link' not supported on this platform.")))
... instead of just `void-function ...'? Maybe not worth the effort.
> nnmaildir.el:1674:1:Warning: the following functions are not known to be
nnmaildir.el also uses `make-symbolic-link'. What other functions
aren't defined?
Bye, Reiner.
--
,,,
(o o)
---ooO-(_)-Ooo--- | PGP key available | http://rsteib.home.pages.de/
- Re: strange code in ediff-hook.el, (continued)
- Re: strange code in ediff-hook.el, Dan Nicolaescu, 2008/03/08
- Re: strange code in ediff-hook.el, Michael Kifer, 2008/03/09
- Re: strange code in ediff-hook.el, Johan Bockgård, 2008/03/09
- Re: strange code in ediff-hook.el, Juanma Barranquero, 2008/03/08
- Re: strange code in ediff-hook.el, Dan Nicolaescu, 2008/03/08
- Re: strange code in ediff-hook.el, Glenn Morris, 2008/03/08
- Compiler warnings on Windows - gnus/*.el (was: strange code in ediff-hook.el),
Reiner Steib <=
- Re: Compiler warnings on Windows - gnus/*.el, Glenn Morris, 2008/03/09
- Re: Compiler warnings on Windows - gnus/*.el, Glenn Morris, 2008/03/09
- Re: Compiler warnings on Windows - gnus/*.el (was: strange code in ediff-hook.el), Eli Zaretskii, 2008/03/09
- Re: Compiler warnings on Windows - gnus/*.el, Stefan Monnier, 2008/03/09