diff options
| author | Glenn Morris | 2007-12-05 03:34:49 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-12-05 03:34:49 +0000 |
| commit | f30cf46cc43fb8fa458ed071a57f4ef3a0dcc86d (patch) | |
| tree | 22fb9b2faa17024dc3e99eeb40ad8ab61ca465a9 /lisp | |
| parent | 5786bb713c49d36f8da24973d96c58200773b67f (diff) | |
| download | emacs-f30cf46cc43fb8fa458ed071a57f4ef3a0dcc86d.tar.gz emacs-f30cf46cc43fb8fa458ed071a57f4ef3a0dcc86d.zip | |
(Info-goto-node, calendar-astro-date-string)
(calendar-bahai-date-string, calendar-check-holidays)
(calendar-chinese-date-string, calendar-coptic-date-string)
(calendar-ethiopic-date-string, calendar-forward-day)
(calendar-french-date-string, calendar-goto-date)
(calendar-goto-today, calendar-hebrew-date-string)
(calendar-islamic-date-string, calendar-iso-date-string)
(calendar-julian-date-string, calendar-mayan-date-string)
(calendar-persian-date-string, gnus-summary-last-subject)
(parse-time-string, rmail-show-message): Declare as functions.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/textmodes/org.el | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el index fdedc1580bc..0535f679c40 100644 --- a/lisp/textmodes/org.el +++ b/lisp/textmodes/org.el | |||
| @@ -3888,6 +3888,7 @@ If it is less than 8, the level-1 face gets re-used for level N+1 etc." | |||
| 3888 | (date string specifier &optional marker globcolor literal)) | 3888 | (date string specifier &optional marker globcolor literal)) |
| 3889 | (declare-function table--at-cell-p "table" (position &optional object at-column)) | 3889 | (declare-function table--at-cell-p "table" (position &optional object at-column)) |
| 3890 | (declare-function Info-find-node "info" (filename nodename &optional no-going-back)) | 3890 | (declare-function Info-find-node "info" (filename nodename &optional no-going-back)) |
| 3891 | (declare-function Info-goto-node "info" (nodename &optional fork)) | ||
| 3891 | (declare-function bbdb "ext:bbdb-com" (string elidep)) | 3892 | (declare-function bbdb "ext:bbdb-com" (string elidep)) |
| 3892 | (declare-function bbdb-company "ext:bbdb-com" (string elidep)) | 3893 | (declare-function bbdb-company "ext:bbdb-com" (string elidep)) |
| 3893 | (declare-function bbdb-current-record "ext:bbdb-com" (&optional planning-on-modifying)) | 3894 | (declare-function bbdb-current-record "ext:bbdb-com" (&optional planning-on-modifying)) |
| @@ -3898,9 +3899,26 @@ If it is less than 8, the level-1 face gets re-used for level N+1 etc." | |||
| 3898 | (declare-function bibtex-generate-autokey "bibtex" ()) | 3899 | (declare-function bibtex-generate-autokey "bibtex" ()) |
| 3899 | (declare-function bibtex-parse-entry "bibtex" (&optional content)) | 3900 | (declare-function bibtex-parse-entry "bibtex" (&optional content)) |
| 3900 | (declare-function bibtex-url "bibtex" (&optional pos no-browse)) | 3901 | (declare-function bibtex-url "bibtex" (&optional pos no-browse)) |
| 3902 | (declare-function calendar-astro-date-string "cal-julian" (&optional date)) | ||
| 3903 | (declare-function calendar-bahai-date-string "cal-bahai" (&optional date)) | ||
| 3904 | (declare-function calendar-check-holidays "holidays" (date)) | ||
| 3905 | (declare-function calendar-chinese-date-string "cal-china" (&optional date)) | ||
| 3906 | (declare-function calendar-coptic-date-string "cal-coptic" (&optional date)) | ||
| 3907 | (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date)) | ||
| 3908 | (declare-function calendar-forward-day "cal-move" (arg)) | ||
| 3909 | (declare-function calendar-french-date-string "cal-french" (&optional date)) | ||
| 3910 | (declare-function calendar-goto-date "cal-move" (date)) | ||
| 3911 | (declare-function calendar-goto-today "cal-move" ()) | ||
| 3912 | (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date)) | ||
| 3913 | (declare-function calendar-islamic-date-string "cal-islam" (&optional date)) | ||
| 3914 | (declare-function calendar-iso-date-string "cal-iso" (&optional date)) | ||
| 3915 | (declare-function calendar-julian-date-string "cal-julian" (&optional date)) | ||
| 3916 | (declare-function calendar-mayan-date-string "cal-mayan" (&optional date)) | ||
| 3917 | (declare-function calendar-persian-date-string "cal-persia" (&optional date)) | ||
| 3901 | (declare-function cdlatex-tab "ext:cdlatex" ()) | 3918 | (declare-function cdlatex-tab "ext:cdlatex" ()) |
| 3902 | (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep)) | 3919 | (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep)) |
| 3903 | (declare-function gnus-article-show-summary "gnus-art" ()) | 3920 | (declare-function gnus-article-show-summary "gnus-art" ()) |
| 3921 | (declare-function gnus-summary-last-subject "gnus-sum" ()) | ||
| 3904 | (declare-function mh-display-msg "mh-show" (msg-num folder-name)) | 3922 | (declare-function mh-display-msg "mh-show" (msg-num folder-name)) |
| 3905 | (declare-function mh-find-path "mh-utils" ()) | 3923 | (declare-function mh-find-path "mh-utils" ()) |
| 3906 | (declare-function mh-get-header-field "mh-utils" (field)) | 3924 | (declare-function mh-get-header-field "mh-utils" (field)) |
| @@ -3917,9 +3935,11 @@ If it is less than 8, the level-1 face gets re-used for level N+1 etc." | |||
| 3917 | (declare-function mh-show-show "mh-show" t t) | 3935 | (declare-function mh-show-show "mh-show" t t) |
| 3918 | (declare-function mh-visit-folder "mh-folder" (folder &optional range index-data)) | 3936 | (declare-function mh-visit-folder "mh-folder" (folder &optional range index-data)) |
| 3919 | (declare-function org-export-latex-cleaned-string "org-export-latex" (&optional commentsp)) | 3937 | (declare-function org-export-latex-cleaned-string "org-export-latex" (&optional commentsp)) |
| 3938 | (declare-function parse-time-string "parse-time" (string)) | ||
| 3920 | (declare-function remember "remember" (&optional initial)) | 3939 | (declare-function remember "remember" (&optional initial)) |
| 3921 | (declare-function remember-buffer-desc "remember" ()) | 3940 | (declare-function remember-buffer-desc "remember" ()) |
| 3922 | (declare-function rmail-narrow-to-non-pruned-header "rmail" ()) | 3941 | (declare-function rmail-narrow-to-non-pruned-header "rmail" ()) |
| 3942 | (declare-function rmail-show-message "rmail" (&optional n no-summary)) | ||
| 3923 | (declare-function rmail-what-message "rmail" ()) | 3943 | (declare-function rmail-what-message "rmail" ()) |
| 3924 | (declare-function elmo-folder-exists-p "ext:elmo" (folder) t) | 3944 | (declare-function elmo-folder-exists-p "ext:elmo" (folder) t) |
| 3925 | (declare-function elmo-message-entity-field "ext:elmo-msgdb" (entity field &optional type)) | 3945 | (declare-function elmo-message-entity-field "ext:elmo-msgdb" (entity field &optional type)) |