(zenirc, zenirc-send-line): Declare as functions.
This commit is contained in:
parent
132d5910a0
commit
0bd90741d6
3 changed files with 41 additions and 0 deletions
|
@ -1,3 +1,33 @@
|
|||
2007-11-29 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* textmodes/css-mode.el (prog-mode): Remove.
|
||||
(css-mode): Derive from fundamental-mode rather than prog-mode.
|
||||
|
||||
* emacs-lisp/byte-run.el (declare-function): Doc fix.
|
||||
|
||||
* emacs-lisp/check-declare.el (check-declare-locate)
|
||||
(check-declare-verify): Handle `external' files.
|
||||
(check-declare-errmsg): New function.
|
||||
(check-declare-verify, check-declare-file, check-declare-directory):
|
||||
Use check-declare-errmsg to report the number of problems.
|
||||
|
||||
* ffap.el (w3-view-this-url)
|
||||
* mail/mspools.el (vm-visit-folder)
|
||||
* net/browse-url.el (w3-fetch-other-window, w3-fetch)
|
||||
* net/eudcb-bbdb.el (bbdb-phone-location, bbdb-phone-string)
|
||||
(bbdb-record-phones, bbdb-address-city, bbdb-address-state)
|
||||
(bbdb-address-zip, bbdb-address-location, bbdb-record-addresses)
|
||||
(bbdb-records)
|
||||
* net/eudc-export.el (bbdb-parse-phone-number, bbdb-string-trim)
|
||||
* net/imap.el (sasl-find-mechanism, sasl-mechanism-name)
|
||||
(sasl-make-client, sasl-next-step, sasl-step-data)
|
||||
(sasl-step-set-data)
|
||||
* net/newsticker.el (w3m-toggle-inline-image, htmlr-reset)
|
||||
(htmlr-step): Declare as functions.
|
||||
|
||||
* net/eudcb-bbdb.el (eudc-bbdb-extract-addresses): Use
|
||||
bbdb-address-zip rather than bbdb-address-zip-string.
|
||||
|
||||
2007-11-28 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* md4.el, net/hmac-def.el, net/hmac-md5.el, net/ntlm.el:
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
2007-11-29 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* url-file.el (url-file-build-filename, url-file): Wrap uses of
|
||||
efs in (featurep 'xemacs) test.
|
||||
|
||||
* url-irc.el (zenirc, zenirc-send-line): Declare as functions.
|
||||
|
||||
2007-11-28 Diane Murray <disumu@x3y2z1.net>
|
||||
|
||||
* url-dired.el: Don't require w3-fetch and w3-open-local.
|
||||
|
|
|
@ -47,6 +47,10 @@ PASSWORD - What password to use"
|
|||
(function :tag "Other"))
|
||||
:group 'url)
|
||||
|
||||
;; External.
|
||||
(declare-function zenirc "ext:zenirc" (&optional prefix))
|
||||
(declare-function zenirc-send-line "ext:zenirc" ())
|
||||
|
||||
(defun url-irc-zenirc (host port channel user password)
|
||||
(let ((zenirc-buffer-name (if (and user host port)
|
||||
(format "%s@%s:%d" user host port)
|
||||
|
|
Loading…
Add table
Reference in a new issue