1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-06 20:49:33 +00:00

Declaration fixes.

* lisp/net/network-stream.el (gnutls-negotiate): Fix declaration.

* lisp/simple.el (tabulated-list-print): Fix declaration.

* lisp/progmodes/gud.el (syntax-symbol, syntax-point):
Remove unnecessary and incorrect declarations.
This commit is contained in:
Glenn Morris 2011-05-04 23:35:41 -07:00
parent 0bff894fc1
commit cf5bee67f9
4 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,11 @@
2011-05-05 Glenn Morris <rgm@gnu.org>
* net/network-stream.el (gnutls-negotiate):
* simple.el (tabulated-list-print): Fix declarations.
* progmodes/gud.el (syntax-symbol, syntax-point):
Remove unnecessary and incorrect declarations.
* emacs-lisp/check-declare.el (check-declare-scan):
Handle byte-compile-initial-macro-environment in bytecomp.el

View File

@ -45,7 +45,7 @@
(require 'tls)
(require 'starttls)
(declare-function gnutls-negotiate "gnutls" (&rest spec))
(declare-function gnutls-negotiate "gnutls" t t) ; defun*
;;;###autoload
(defun open-network-stream (name buffer host service &rest parameters)

View File

@ -3042,8 +3042,6 @@ Link exprs of the form:
(declare-function c-langelem-sym "cc-defs" (langelem))
(declare-function c-langelem-pos "cc-defs" (langelem))
(declare-function syntax-symbol "gud" (x))
(declare-function syntax-point "gud" (x))
(defun gud-find-class (f _line)
"Find fully qualified class in file F at line LINE.

View File

@ -2707,7 +2707,8 @@ support pty association, if PROGRAM is nil."
(defvar tabulated-list-entries)
(defvar tabulated-list-sort-key)
(declare-function tabulated-list-init-header "tabulated-list" ())
(declare-function tabulated-list-print "tabulated-list" ())
(declare-function tabulated-list-print "tabulated-list"
(&optional remember-pos))
(defvar process-menu-query-only nil)