summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Steingold <sds@goems.com>2000-07-24 16:16:13 +0000
committerSam Steingold <sds@goems.com>2000-07-24 16:16:13 +0000
commit1083cb257ca9682f1253d35f3450740dd9ead7c4 (patch)
treef0ef27fe52c11ae262eafc9a53bbd58b8b2b3f6c
parentb7b738cd6d1ecda7fae0ba49ab30a57dbd8bdc32 (diff)
added some autoload cookies
-rw-r--r--lisp/bbdb-com.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/bbdb-com.el b/lisp/bbdb-com.el
index e1a0331..7179ab6 100644
--- a/lisp/bbdb-com.el
+++ b/lisp/bbdb-com.el
@@ -1519,6 +1519,7 @@ weights more than 100 will be in the end."
:group 'bbdb-noticing-records
:type 'list)
+;;;###autoload
(defun bbdb-sort-notes (rec)
"Sort the notes in the record according to `bbdb-notes-sort-order'.
Can be used in `bbdb-change-hook'."
@@ -1527,6 +1528,7 @@ Can be used in `bbdb-change-hook'."
rec (sort (bbdb-record-raw-notes rec)
(lambda (aa bb) (< (kk aa) (kk bb)))))))
+;;;###autoload
(defun bbdb-sort-phones (rec)
"Sort the phones in the record according to the location.
Can be used in `bbdb-change-hook'."
@@ -1534,6 +1536,7 @@ Can be used in `bbdb-change-hook'."
rec (sort (bbdb-record-phones rec)
(lambda (xx yy) (string< (aref xx 0) (aref yy 0))))))
+;;;###autoload
(defun bbdb-sort-addresses (rec)
"Sort the addresses in the record according to the location.
Can be used in `bbdb-change-hook'."