changeset 105279:6969c5b2e0b2

Mark declarations not understood by check-declare.
author Glenn Morris <rgm@gnu.org>
date Tue, 29 Sep 2009 04:09:19 +0000
parents bde759149ba1
children 24b278c5dc72
files lisp/cedet/semantic/complete.el lisp/cedet/semantic/tag-file.el lisp/cedet/srecode/compile.el
diffstat 3 files changed, 8 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/cedet/semantic/complete.el	Tue Sep 29 04:00:38 2009 +0000
+++ b/lisp/cedet/semantic/complete.el	Tue Sep 29 04:09:19 2009 +0000
@@ -312,7 +312,8 @@
 ;; semantic-displayor-focus-abstract-child-p is part of the
 ;; semantic-displayor-focus-abstract class, defined later in this
 ;; file.
-(declare-function semantic-displayor-focus-abstract-child-p "semantic/complete")
+(declare-function semantic-displayor-focus-abstract-child-p "semantic/complete"
+		  t t)
 
 (defun semantic-complete-current-match ()
   "Calculate a match from the current completion environment.
--- a/lisp/cedet/semantic/tag-file.el	Tue Sep 29 04:00:38 2009 +0000
+++ b/lisp/cedet/semantic/tag-file.el	Tue Sep 29 04:09:19 2009 +0000
@@ -1,7 +1,7 @@
 ;;; semantic/tag-file.el --- Routines that find files based on tags.
 
-;;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
-;;; 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
+;;   2009  Free Software Foundation, Inc.
 
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: syntax
@@ -29,7 +29,7 @@
 (require 'semantic/tag)
 
 (defvar ede-minor-mode)
-(declare-function semanticdb-table-child-p "semantic/db")
+(declare-function semanticdb-table-child-p "semantic/db" t t)
 (declare-function semanticdb-get-buffer "semantic/db")
 (declare-function semantic-dependency-find-file-on-path "semantic/dep")
 (declare-function ede-toplevel "ede/files")
--- a/lisp/cedet/srecode/compile.el	Tue Sep 29 04:00:38 2009 +0000
+++ b/lisp/cedet/srecode/compile.el	Tue Sep 29 04:09:19 2009 +0000
@@ -1,6 +1,6 @@
 ;;; srecode/compile --- Compilation of srecode template files.
 
-;;; Copyright (C) 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 2005, 2007, 2008, 2009  Free Software Foundation, Inc.
 
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: codegeneration
@@ -37,7 +37,8 @@
 (require 'srecode)
 (require 'srecode/table)
 
-(declare-function srecode-template-inserter-newline-child-p "srecode/insert")
+(declare-function srecode-template-inserter-newline-child-p "srecode/insert"
+		  t t)
 (declare-function srecode-create-section-dictionary "srecode/dictionary")
 (declare-function srecode-dictionary-compound-variable "srecode/dictionary")