mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-25 10:47:00 +00:00
Fix some declarations.
* lisp/descr-text.el (internal-char-font): * lisp/cedet/mode-local.el (xref-item-location): * lisp/gnus/mml-smime.el (epg-key-sub-key-list) (epg-sub-key-capability, epg-sub-key-validity): * lisp/international/mule-util.el (internal-char-font): Fix declarations.
This commit is contained in:
parent
30d465b060
commit
1b7e681292
@ -670,7 +670,7 @@ SYMBOL is a function that can be overridden."
|
||||
|
||||
(add-hook 'help-fns-describe-function-functions 'describe-mode-local-overload)
|
||||
|
||||
(declare-function xref-item-location "xref" (xref))
|
||||
(declare-function xref-item-location "xref" (xref) t)
|
||||
|
||||
(defun xref-mode-local--override-present (sym xrefs)
|
||||
"Return non-nil if SYM is in XREFS."
|
||||
|
@ -322,7 +322,7 @@ This function is semi-obsolete. Use `get-char-code-property'."
|
||||
(nth 13 fields) 16)))))))))))
|
||||
|
||||
;; Not defined on builds without X, but behind display-graphic-p.
|
||||
(declare-function internal-char-font "fontset.c" (position &optional ch))
|
||||
(declare-function internal-char-font "font.c" (position &optional ch))
|
||||
|
||||
;; Return information about how CHAR is displayed at the buffer
|
||||
;; position POS. If the selected frame is on a graphic display,
|
||||
|
@ -350,9 +350,9 @@ Whether the passphrase is cached at all is controlled by
|
||||
(autoload 'epg-expand-group "epg-config")
|
||||
(autoload 'epa-select-keys "epa"))
|
||||
|
||||
(declare-function epg-key-sub-key-list "ext:epg" (key))
|
||||
(declare-function epg-sub-key-capability "ext:epg" (sub-key))
|
||||
(declare-function epg-sub-key-validity "ext:epg" (sub-key))
|
||||
(declare-function epg-key-sub-key-list "epg" (key) t)
|
||||
(declare-function epg-sub-key-capability "epg" (sub-key) t)
|
||||
(declare-function epg-sub-key-validity "epg" (sub-key) t)
|
||||
|
||||
(autoload 'mml-compute-boundary "mml")
|
||||
|
||||
|
@ -259,7 +259,7 @@ language environment LANG-ENV."
|
||||
(with-coding-priority coding-priority
|
||||
(detect-coding-region from to)))))
|
||||
|
||||
(declare-function internal-char-font "fontset.c" (position &optional ch))
|
||||
(declare-function internal-char-font "font.c" (position &optional ch))
|
||||
|
||||
;;;###autoload
|
||||
(defun char-displayable-p (char)
|
||||
|
Loading…
Reference in New Issue
Block a user