]> code.delx.au - gnu-emacs/commitdiff
(bbdb-phone-location, bbdb-record-phones)
authorGlenn Morris <rgm@gnu.org>
Fri, 30 Nov 2007 07:49:56 +0000 (07:49 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 30 Nov 2007 07:49:56 +0000 (07:49 +0000)
(bbdb-address-city, bbdb-address-state, bbdb-address-zip)
(bbdb-address-location, bbdb-record-addresses): Pass non-nil
fourth arg to declare-function.

lisp/ChangeLog
lisp/net/eudcb-bbdb.el

index e8a3bd526bc928054fee3ed07f7fd29caa4fb900..40311f8b804f15aa997dd777b6ba25ce169bb63f 100644 (file)
@@ -1,3 +1,23 @@
+2007-11-30  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/byte-run.el (declare-function): Add optional fourth
+       argument and document it.
+
+       * emacs-lisp/bytecomp.el (byte-compile-declare-function):
+       Third argument to declare-function must be a list to specify arglist.
+
+       * emacs-lisp/check-declare.el (check-declare-scan): Doc fix.
+       Handle declare-function third argument `t' and fourth argument.
+       (check-declare-verify): Doc fix.  Handle `fileonly' case.
+       Use progn rather than prog1.
+
+       * desktop.el (uniquify-item-base): Declare as a function.
+
+       * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-record-phones)
+       (bbdb-address-city, bbdb-address-state, bbdb-address-zip)
+       (bbdb-address-location, bbdb-record-addresses): Pass non-nil
+       fourth arg to declare-function.
+
 2007-11-29  Alexandre Julliard  <julliard@winehq.org>
 
        * vc-git.el (vc-git-dir-state): Fix the git command arguments.
index 222ed1321629f8fe80052061aa3d71a6f36bd69c..4a1b865736a0b7e8e563d310d96d85e73b092e1b 100644 (file)
       record)))
 
 ;; External.
-(declare-function bbdb-phone-location   "ext:bbdb") ; via bbdb-defstruct
+(declare-function bbdb-phone-location   "ext:bbdb" t) ; via bbdb-defstruct
 (declare-function bbdb-phone-string     "ext:bbdb" (phone))
-(declare-function bbdb-record-phones    "ext:bbdb") ; via bbdb-defstruct
+(declare-function bbdb-record-phones    "ext:bbdb" t) ; via bbdb-defstruct
 ;; FIXME: bbdb-address-street1/2/3 don't seem to exist in current
 ;; bbdb, so this code is probably broken.
-(declare-function bbdb-address-city     "ext:bbdb") ; via bbdb-defstruct
-(declare-function bbdb-address-state    "ext:bbdb") ; via bbdb-defstruct
-(declare-function bbdb-address-zip      "ext:bbdb") ; via bbdb-defstruct
-(declare-function bbdb-address-location "ext:bbdb") ; via bbdb-defstruct
-(declare-function bbdb-record-addresses "ext:bbdb") ; via bbdb-defstruct
+(declare-function bbdb-address-city     "ext:bbdb" t) ; via bbdb-defstruct
+(declare-function bbdb-address-state    "ext:bbdb" t) ; via bbdb-defstruct
+(declare-function bbdb-address-zip      "ext:bbdb" t) ; via bbdb-defstruct
+(declare-function bbdb-address-location "ext:bbdb" t) ; via bbdb-defstruct
+(declare-function bbdb-record-addresses "ext:bbdb" t) ; via bbdb-defstruct
 (declare-function bbdb-records          "ext:bbdb"
                   (&optional dont-check-disk already-in-db-buffer))