]> git.eshelyaron.com Git - emacs.git/commitdiff
cedet: remove obsolete name args to constructors
authorGlenn Morris <rgm@gnu.org>
Sat, 17 Mar 2018 00:34:27 +0000 (20:34 -0400)
committerAndrew G Cohen <cohen@andy.bu.edu>
Tue, 11 Dec 2018 06:17:51 +0000 (14:17 +0800)
* lisp/cedet/ede/proj-archive.el, lisp/cedet/ede/proj-aux.el:
* lisp/cedet/ede/proj-elisp.el, lisp/cedet/ede/proj-info.el:
* lisp/cedet/ede/proj-misc.el, lisp/cedet/ede/proj-obj.el:
* lisp/cedet/ede/proj-shared.el, lisp/cedet/ede/simple.el:
* lisp/cedet/ede/source.el, lisp/cedet/semantic/:
* lisp/cedet/semantic/analyze.el, lisp/cedet/semantic/complete.el:
* lisp/cedet/semantic/db-javascript.el:
* lisp/cedet/semantic/db-ref.el, lisp/cedet/semantic/debug.el:
* lisp/cedet/semantic/ede-grammar.el:
* lisp/cedet/semantic/mru-bookmark.el, lisp/cedet/semantic/scope.el:
* lisp/cedet/semantic/texi.el, lisp/cedet/semantic/bovine/:
* lisp/cedet/semantic/bovine/c.el:
* lisp/cedet/semantic/bovine/debug.el, lisp/cedet/srecode/:
* lisp/cedet/srecode/extract.el, lisp/cedet/srecode/map.el:
* lisp/cedet/srecode/srt-mode.el:
Remove obsolete name args to constructors.

23 files changed:
lisp/cedet/ede/proj-archive.el
lisp/cedet/ede/proj-aux.el
lisp/cedet/ede/proj-elisp.el
lisp/cedet/ede/proj-info.el
lisp/cedet/ede/proj-misc.el
lisp/cedet/ede/proj-obj.el
lisp/cedet/ede/proj-shared.el
lisp/cedet/ede/simple.el
lisp/cedet/ede/source.el
lisp/cedet/semantic/analyze.el
lisp/cedet/semantic/bovine/c.el
lisp/cedet/semantic/bovine/debug.el
lisp/cedet/semantic/complete.el
lisp/cedet/semantic/db-javascript.el
lisp/cedet/semantic/db-ref.el
lisp/cedet/semantic/debug.el
lisp/cedet/semantic/ede-grammar.el
lisp/cedet/semantic/mru-bookmark.el
lisp/cedet/semantic/scope.el
lisp/cedet/semantic/texi.el
lisp/cedet/srecode/extract.el
lisp/cedet/srecode/map.el
lisp/cedet/srecode/srt-mode.el

index ad2355a8512c559917ce93c7ea615736277a57a4..553f918f9ec4c75a12e6d6098a2b3a102a9dd45c 100644 (file)
@@ -34,7 +34,6 @@
 
 (defvar ede-archive-linker
   (ede-linker
-   "ede-archive-linker"
    :name "ar"
    :variables  '(("AR" . "ar")
                 ("AR_CMD" . "$(AR) cr"))
index 091ea1741b7062243936c5c00c2ccdcedaa00163..f75006d6c57512d29c0db4b987e4743e7ec625da 100644 (file)
@@ -34,8 +34,7 @@
   "This target consists of aux files such as READMEs and COPYING.")
 
 (defvar ede-aux-source
-  (ede-sourcecode "ede-aux-source-txt"
-                 :name "Auxiliary Text"
+  (ede-sourcecode :name "Auxiliary Text"
                  :sourcepattern "^[A-Z]+$\\|\\.txt$")
   "Miscellaneous fields definition.")
 
index 2ef91e767bb667c1ee04ba3c58cb73b3e2862709..d9b8989ec74641b7fa6881d0dc2770e90eb8b959 100644 (file)
@@ -77,21 +77,18 @@ For Emacs Lisp, return addsuffix command on source files."
          (ede-proj-makefile-sourcevar this)))
 
 (defvar ede-source-emacs
-  (ede-sourcecode "ede-emacs-source"
-                 :name "Emacs Lisp"
+  (ede-sourcecode :name "Emacs Lisp"
                  :sourcepattern "\\.el$"
                  :garbagepattern '("*.elc"))
   "Emacs Lisp source code definition.")
 
 (defvar ede-emacs-compiler
   (ede-compiler
-   "ede-emacs-compiler"
    :name "emacs"
    :variables '(("EMACS" . "emacs")
                ("EMACSFLAGS" . "-batch --no-site-file --eval '(setq debug-on-error t)'")
                ("require" . "$(foreach r,$(1),(require (quote $(r))))"))
    :rules (list (ede-makefile-rule
-                "elisp-inference-rule"
                 :target "%.elc"
                 :dependencies "%.el"
                 :rules '("$(EMACS) $(EMACSFLAGS) $(addprefix -L ,$(LOADPATH)) \
@@ -103,7 +100,7 @@ For Emacs Lisp, return addsuffix command on source files."
   "Compile Emacs Lisp programs.")
 
 (defvar ede-xemacs-compiler
-  (clone ede-emacs-compiler "ede-xemacs-compiler"
+  (clone ede-emacs-compiler
         :name "xemacs"
         :variables '(("EMACS" . "xemacs")))
   "Compile Emacs Lisp programs with XEmacs.")
@@ -324,7 +321,6 @@ Lays claim to all .elc files that match .el files in this target."
 ;; Compilers
 (defvar ede-emacs-cedet-autogen-compiler
   (ede-compiler
-   "ede-emacs-autogen-compiler"
    :name "emacs"
    :variables '(("EMACS" . "emacs")
                ("EMACSFLAGS" . "-batch --no-site-file --eval '(setq debug-on-error t)'")
@@ -333,7 +329,7 @@ Lays claim to all .elc files that match .el files in this target."
    '("$(EMACS) $(EMACSFLAGS) $(addprefix -L ,$(LOADPATH)) \
 --eval '(setq generated-autoload-file \"$(abspath $(LOADDEFS))\")' \
 -f batch-update-autoloads $(abspath $(LOADDIRS))")
-   :rules (list (ede-makefile-rule "clean-autoloads" :target "clean-autoloads" :phony t :rules '("rm -f $(LOADDEFS)")))
+   :rules (list (ede-makefile-rule :target "clean-autoloads" :phony t :rules '("rm -f $(LOADDEFS)")))
    :sourcetype '(ede-source-emacs)
    )
   "Build an autoloads file.")
index 849ef14352b75c44313fd890c20ad27b99ee64a4..992996a9355f984791381836ef230e42ca175ee0 100644 (file)
@@ -43,15 +43,13 @@ All other sources should be included independently."))
   "Target for a single info file.")
 
 (defvar ede-makeinfo-source
-  (ede-sourcecode "ede-makeinfo-source"
-                 :name "Texinfo"
+  (ede-sourcecode :name "Texinfo"
                  :sourcepattern "\\.texi?$"
                  :garbagepattern '("*.info*" "*.html"))
   "Texinfo source code definition.")
 
 (defvar ede-makeinfo-compiler
   (ede-compiler
-   "ede-makeinfo-compiler"
    :name "makeinfo"
    :variables '(("MAKEINFO" . "makeinfo"))
    :commands '("$(MAKEINFO) $<")
@@ -62,7 +60,6 @@ All other sources should be included independently."))
 
 (defvar ede-texi2html-compiler
   (ede-compiler
-   "ede-texi2html-compiler"
    :name "texi2html"
    :variables '(("TEXI2HTML" . "makeinfo -html"))
    :commands '("makeinfo -o $@ $<")
index d85300c312320620cac1a3a1266adf7a88c60a5f..7bc02faccaf0f61b03fc42df56272a1eee7f7f9f 100644 (file)
@@ -49,14 +49,12 @@ A user-written makefile is used to build this target.
 All listed sources are included in the distribution.")
 
 (defvar ede-misc-source
-  (ede-sourcecode "ede-misc-source"
-                 :name "Miscellaneous"
+  (ede-sourcecode :name "Miscellaneous"
                  :sourcepattern ".*")
   "Miscellaneous field definition.")
 
 (defvar ede-misc-compile
-  (ede-compiler "ede-misc-compile"
-               :name "Sub Makefile"
+  (ede-compiler :name "Sub Makefile"
                :commands
                '(
                  )
index a34d209375b496ede0ff42bfe15db0cf545bbb20..b087c29cfe6d64c4cd1d2a1f2e5e0462e9762aa9 100644 (file)
@@ -83,8 +83,7 @@ file.")
 ;;; C/C++ Compilers and Linkers
 ;;
 (defvar ede-source-c
-  (ede-sourcecode "ede-source-c"
-                 :name "C"
+  (ede-sourcecode :name "C"
                  :sourcepattern "\\.c$"
                  :auxsourcepattern "\\.h$"
                  :garbagepattern '("*.o" "*.obj" ".deps/*.P" ".lo"))
@@ -92,14 +91,12 @@ file.")
 
 (defvar ede-gcc-compiler
   (ede-object-compiler
-   "ede-c-compiler-gcc"
    :name "gcc"
    :dependencyvar '("C_DEPENDENCIES" . "-Wp,-MD,.deps/$(*F).P")
    :variables '(("CC" . "gcc")
                ("C_COMPILE" .
                 "$(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)"))
    :rules (list (ede-makefile-rule
-                "c-inference-rule"
                 :target "%.o"
                 :dependencies "%.c"
                 :rules '("@echo '$(C_COMPILE) -c $<'; \\"
@@ -115,7 +112,6 @@ file.")
 
 (defvar ede-cc-linker
   (ede-linker
-   "ede-cc-linker"
    :name "cc"
    :sourcetype '(ede-source-c)
    :variables  '(("C_LINK" . "$(CC) $(CFLAGS) $(LDFLAGS) -L."))
@@ -124,8 +120,7 @@ file.")
   "Linker for C sourcecode.")
 
 (defvar ede-source-c++
-  (ede-sourcecode "ede-source-c++"
-                 :name "C++"
+  (ede-sourcecode :name "C++"
                  :sourcepattern "\\.\\(c\\(pp?\\|c\\|xx\\|++\\)\\|C\\(PP\\)?\\)$"
                  :auxsourcepattern "\\.\\(hpp?\\|hh?\\|hxx\\|H\\)$"
                  :garbagepattern '("*.o" "*.obj" ".deps/*.P" ".lo"))
@@ -133,7 +128,6 @@ file.")
 
 (defvar ede-g++-compiler
   (ede-object-compiler
-   "ede-c-compiler-g++"
    :name "g++"
    :dependencyvar '("CXX_DEPENDENCIES" . "-Wp,-MD,.deps/$(*F).P")
    :variables '(("CXX" "g++")
@@ -141,7 +135,6 @@ file.")
                 "$(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)")
                )
    :rules (list (ede-makefile-rule
-                "c++-inference-rule"
                 :target "%.o"
                 :dependencies "%.cpp"
                 :rules '("@echo '$(CXX_COMPILE) -c $<'; \\"
@@ -157,7 +150,6 @@ file.")
 
 (defvar ede-g++-linker
   (ede-linker
-   "ede-g++-linker"
    :name "g++"
    ;; Only use this linker when c++ exists.
    :sourcetype '(ede-source-c++)
@@ -169,15 +161,13 @@ file.")
 
 ;;; LEX
 (defvar ede-source-lex
-  (ede-sourcecode "ede-source-lex"
-                 :name "lex"
+  (ede-sourcecode :name "lex"
                  :sourcepattern "\\.l\\(l\\|pp\\|++\\)")
   "Lex source code definition.
 No garbage pattern since it creates C or C++ code.")
 
 (defvar ede-lex-compiler
   (ede-object-compiler
-   "ede-lex-compiler"
    ;; Can we support regular makefiles too??
    :autoconf '("AC_PROG_LEX")
    :sourcetype '(ede-source-lex))
@@ -185,15 +175,13 @@ No garbage pattern since it creates C or C++ code.")
 
 ;;; YACC
 (defvar ede-source-yacc
-  (ede-sourcecode "ede-source-yacc"
-                 :name "yacc"
+  (ede-sourcecode :name "yacc"
                  :sourcepattern "\\.y\\(y\\|pp\\|++\\)")
   "Yacc source code definition.
 No garbage pattern since it creates C or C++ code.")
 
 (defvar ede-yacc-compiler
   (ede-object-compiler
-   "ede-yacc-compiler"
    ;; Can we support regular makefiles too??
    :autoconf '("AC_PROG_YACC")
    :sourcetype '(ede-source-yacc))
@@ -203,16 +191,14 @@ No garbage pattern since it creates C or C++ code.")
 ;;
 ;; Contributed by David Engster
 (defvar ede-source-f90
-  (ede-sourcecode "ede-source-f90"
-                 :name "Fortran 90/95"
+  (ede-sourcecode :name "Fortran 90/95"
                  :sourcepattern "\\.[fF]9[05]$"
                  :auxsourcepattern "\\.incf$"
                  :garbagepattern '("*.o" "*.mod" ".deps/*.P"))
   "Fortran 90/95 source code definition.")
 
 (defvar ede-source-f77
-  (ede-sourcecode "ede-source-f77"
-                 :name "Fortran 77"
+  (ede-sourcecode :name "Fortran 77"
                  :sourcepattern "\\.\\([fF]\\|for\\)$"
                  :auxsourcepattern "\\.incf$"
                  :garbagepattern '("*.o" ".deps/*.P"))
@@ -220,14 +206,12 @@ No garbage pattern since it creates C or C++ code.")
 
 (defvar ede-gfortran-compiler
   (ede-object-compiler
-   "ede-f90-compiler-gfortran"
    :name "gfortran"
    :dependencyvar '("F90_DEPENDENCIES" . "-Wp,-MD,.deps/$(*F).P")
    :variables '(("F90" . "gfortran")
                ("F90_COMPILE" .
                 "$(F90) $(DEFS) $(INCLUDES) $(F90FLAGS)"))
    :rules (list (ede-makefile-rule
-                "f90-inference-rule"
                 :target "%.o"
                 :dependencies "%.f90"
                 :rules '("@echo '$(F90_COMPILE) -c $<'; \\"
@@ -242,7 +226,6 @@ No garbage pattern since it creates C or C++ code.")
 
 (defvar ede-gfortran-module-compiler
   (clone ede-gfortran-compiler
-        "ede-f90-module-compiler-gfortran"
         :name "gfortranmod"
         :sourcetype '(ede-source-f90)
         :commands '("$(F90_COMPILE) -c $^")
@@ -253,7 +236,6 @@ No garbage pattern since it creates C or C++ code.")
 
 (defvar ede-gfortran-linker
   (ede-linker
-   "ede-gfortran-linker"
    :name "gfortran"
    :sourcetype '(ede-source-f90 ede-source-f77)
    :variables  '(("F90_LINK" . "$(F90) $(CFLAGS) $(LDFLAGS) -L."))
@@ -265,7 +247,6 @@ No garbage pattern since it creates C or C++ code.")
 ;;
 (defvar ede-ld-linker
   (ede-linker
-   "ede-ld-linker"
    :name "ld"
    :variables  '(("LD" . "ld")
                 ("LD_LINK" . "$(LD) $(LDFLAGS) -L."))
index 5d6ca95d7c58f510b98f64105364b67e04096043..75d02eccbcb1fbe6247f239eb48aac9ce8deb964 100644 (file)
@@ -75,7 +75,6 @@ Use ldlibs to add addition libraries.")
                      ("LTLINK" . "$(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -L. -o $@")
                      )
         :rules (list (ede-makefile-rule
-                      "cc-inference-rule-libtool"
                       :target "%.o"
                       :dependencies "%.c"
                       :rules '("@echo '$(LTCOMPILE) -o $@ $<'; \\"
@@ -122,7 +121,6 @@ Use ldlibs to add addition libraries.")
                      ("LTCOMPILE" . "$(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)")
                      )
         :rules (list (ede-makefile-rule
-                      "c++-inference-rule-libtool"
                       :target "%.o"
                       :dependencies "%.cpp"
                       :rules '("@echo '$(LTCOMPILE) -o $@ $<'; \\"
index b945d690f952b9637ea4bca652fd2f18aaf7932f..3931cf6348362e14ee0f60bd4a66a174d48de73d 100644 (file)
@@ -46,7 +46,7 @@
 ;;; Code:
 
 (add-to-list 'ede-project-class-files
-            (ede-project-autoload "simple-overlay"
+            (ede-project-autoload
              :name "Simple" :file 'ede/simple
              :proj-file 'ede-simple-projectfile-for-dir
              :load-type 'ede-simple-load
index b616af3a43082f3cab253cd8038b78dca8623281..71a1c38a52200dabbb195e58e0762a7afd7711d3 100644 (file)
@@ -156,14 +156,12 @@ Used to guess header files, but uses the auxsource regular expression."
 ;;
 ;; This must appear at the end so that the init method will work.
 (defvar ede-source-scheme
-  (ede-sourcecode "ede-source-scheme"
-                 :name "Scheme"
+  (ede-sourcecode :name "Scheme"
                  :sourcepattern "\\.scm$")
   "Scheme source code definition.")
 
 ;;(defvar ede-source-
-;;  (ede-sourcecode "ede-source-"
-;;                 :name ""
+;;  (ede-sourcecode :name ""
 ;;                 :sourcepattern "\\.$"
 ;;                 :garbagepattern '("*."))
 ;;  " source code definition.")
index 7c9f102951d7455fb9004620e4b8bb10172645fa..625982f2c76890699a00bacb9cd7ab7afcf0fdd3 100644 (file)
@@ -642,7 +642,6 @@ Returns an object based on symbol `semantic-analyze-context'."
       ;; for the argument.
       (setq context-return
            (semantic-analyze-context-functionarg
-            "functionargument"
             :buffer (current-buffer)
             :function fntag
             :index arg
@@ -665,7 +664,6 @@ Returns an object based on symbol `semantic-analyze-context'."
 
       (setq context-return
            (semantic-analyze-context-assignment
-            "assignment"
             :buffer (current-buffer)
             :assignee asstag
             :scope scope
@@ -683,7 +681,6 @@ Returns an object based on symbol `semantic-analyze-context'."
       ;; Nothing in particular
       (setq context-return
            (semantic-analyze-context
-            "context"
             :buffer (current-buffer)
             :scope scope
             :bounds bounds
index 73c8a56dbd891089425b49865c5082e27b64c765..cb27582fa54aad8b8c0773ea0eb26e623d173e47 100644 (file)
@@ -1990,7 +1990,7 @@ have to be wrapped in that namespace."
              (list (semantic-tag-new-type inside-ns "namespace" tags nil)))
        ;; Create new semantic-table for the wrapped tags, since we don't want
        ;; the namespace to actually be a part of the header file.
-       (setq newtable (semanticdb-table "include with context"))
+       (setq newtable (semanticdb-table))
        (oset newtable tags newtags)
        (oset newtable parent-db (oref inctable parent-db))
        (oset newtable file (oref inctable file)))
index 9bacee2a9cc746e902d5a91603dfdf361eaa9b02..e511b3d27104b5b13f74f8bd01d169780976828c 100644 (file)
@@ -73,8 +73,7 @@ The RULE is for \"thing\" is 1.
 The MATCH for \"thing\" is 1.
 COLLECTION is a list of `things' that have been matched so far.
 LEXTOKEN, is a token returned by the lexer which is being matched."
-  (let ((frame (semantic-bovine-debug-frame "frame"
-                                           :nonterm nonterm
+  (let ((frame (semantic-bovine-debug-frame :nonterm nonterm
                                            :rule rule
                                            :match match
                                            :collection collection
@@ -119,8 +118,7 @@ LEXTOKEN, is a token returned by the lexer which is being matched."
 (defun semantic-create-bovine-debug-error-frame (condition)
   "Create an error frame for bovine debugger.
 Argument CONDITION is the thrown error condition."
-  (let ((frame (semantic-bovine-debug-error-frame "frame"
-                                                 :condition condition)))
+  (let ((frame (semantic-bovine-debug-error-frame :condition condition)))
     (semantic-debug-set-frame semantic-debug-current-interface
                              frame)
     frame))
index 1da1a319f1188f2fa5e4fcff2db6a609025564df..baea2261e5d7ab106ac52bbe78489957a2409df8 100644 (file)
@@ -1890,8 +1890,8 @@ If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
 HISTORY is a symbol representing a variable to store the history in."
   (semantic-complete-read-tag-engine
    (semantic-collector-buffer-deep prompt :buffer (current-buffer))
-   (semantic-displayor-traditional-with-focus-highlight "simple")
-   ;;(semantic-displayor-tooltip "simple")
+   (semantic-displayor-traditional-with-focus-highlight)
+   ;;(semantic-displayor-tooltip)
    prompt
    default-tag
    initial-input
@@ -1912,8 +1912,8 @@ If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
 HISTORY is a symbol representing a variable to store the history in."
   (semantic-complete-read-tag-engine
    (semantic-collector-local-members prompt :buffer (current-buffer))
-   (semantic-displayor-traditional-with-focus-highlight "simple")
-   ;;(semantic-displayor-tooltip "simple")
+   (semantic-displayor-traditional-with-focus-highlight)
+   ;;(semantic-displayor-tooltip)
    prompt
    default-tag
    initial-input
@@ -1937,7 +1937,7 @@ HISTORY is a symbol representing a variable to store the history in."
                                       :buffer (current-buffer)
                                       :path (current-buffer)
                                       )
-   (semantic-displayor-traditional-with-focus-highlight "simple")
+   (semantic-displayor-traditional-with-focus-highlight)
    prompt
    default-tag
    initial-input
@@ -1954,7 +1954,6 @@ to control how completion options are displayed.
 See `semantic-complete-inline-tag-engine' for details on how
 completion works."
   (let* ((collector (semantic-collector-project-brutish
-                    "inline"
                     :buffer (current-buffer)
                     :path (current-buffer)))
         (sbounds (semantic-ctxt-current-symbol-and-bounds))
@@ -1984,9 +1983,8 @@ completion works."
          ;; There are several options.  Do the completion.
          (semantic-complete-inline-tag-engine
           collector
-          (funcall semantic-complete-inline-analyzer-displayor-class
-                   "inline displayor")
-          ;;(semantic-displayor-tooltip "simple")
+          (funcall semantic-complete-inline-analyzer-displayor-class)
+          ;;(semantic-displayor-tooltip)
           (current-buffer)
           start end))
       )))
@@ -2013,7 +2011,7 @@ prompts.  these are calculated from the CONTEXT variable passed in."
       prompt
       :buffer (oref context buffer)
       :context context)
-     (semantic-displayor-traditional-with-focus-highlight "simple")
+     (semantic-displayor-traditional-with-focus-highlight)
      (with-current-buffer (oref context buffer)
        (goto-char (cdr (oref context bounds)))
        (concat prompt (mapconcat 'identity syms ".")
@@ -2037,7 +2035,6 @@ completion works."
   (if (not context) (setq context (semantic-analyze-current-context (point))))
   (if (not context) (error "Nothing to complete on here"))
   (let* ((collector (semantic-collector-analyze-completions
-                    "inline"
                     :buffer (oref context buffer)
                     :context context))
         (syms (semantic-ctxt-current-symbol (point)))
@@ -2064,9 +2061,8 @@ completion works."
          ;; There are several options.  Do the completion.
          (semantic-complete-inline-tag-engine
           collector
-          (funcall semantic-complete-inline-analyzer-displayor-class
-                   "inline displayor")
-          ;;(semantic-displayor-tooltip "simple")
+          (funcall semantic-complete-inline-analyzer-displayor-class)
+          ;;(semantic-displayor-tooltip)
           (oref context buffer)
           (car (oref context bounds))
           (cdr (oref context bounds))
index c58c295cd5cbb677c537078ce450004325e5ca57..789614d511a2bc56dcbf393d2c471787615599cf 100644 (file)
@@ -98,7 +98,7 @@ See bottom of this file for instructions on managing this list.")
 ;; Create the database, and add it to searchable databases for javascript mode.
 (defvar-mode-local javascript-mode semanticdb-project-system-databases
   (list
-   (semanticdb-project-database-javascript "Javascript"))
+   (semanticdb-project-database-javascript))
   "Search javascript for symbols.")
 
 ;; NOTE: Be sure to modify this to the best advantage of your
@@ -115,13 +115,13 @@ the omniscience database.")
   "For a javascript database, there are no explicit tables.
 Create one of our special tables that can act as an intermediary."
   ;; NOTE: This method overrides an accessor for the `tables' slot in
-  ;;       a database.  You can either construct your own (like tmp here
+  ;;       a database.  You can either construct your own (like newtable here
   ;;       or you can manage any number of tables.
 
   ;; We need to return something since there is always the "master table"
   ;; The table can then answer file name type questions.
   (when (not (slot-boundp obj 'tables))
-    (let ((newtable (semanticdb-table-javascript "tmp")))
+    (let ((newtable (semanticdb-table-javascript)))
       (oset obj tables (list newtable))
       (oset newtable parent-db obj)
       (oset newtable tags nil)
index 8f20fee9545be4c1d4f9939b40ddde7fa395203e..7713a3cec53a1926e479c9b7e4cac1ccd534e567 100644 (file)
@@ -162,8 +162,7 @@ refreshed before dumping the result."
   (let* ((tab semanticdb-current-table)
         (myrefs (oref tab db-refs))
         (myinc (semanticdb-includes-in-table tab))
-        (adbc (semanticdb-ref-adebug "DEBUG"
-                                     :i-depend-on myrefs
+        (adbc (semanticdb-ref-adebug :i-depend-on myrefs
                                      :local-table tab
                                      :i-include myinc)))
     (data-debug-new-buffer "*References ADEBUG*")
index d127b6465fe54133573445c60a22c7ad06d66b1b..4f05e599798a5d3a927f81bdc4b8ab1f155d2b00 100644 (file)
@@ -361,7 +361,6 @@ Argument ONOFF is non-nil when we are entering debug mode.
        (semantic-debug-current-interface
         (let ((parserb  (semantic-debug-find-parser-source)))
           (semantic-debug-interface
-           "Debug Interface"
            :parser-buffer parserb
            :parser-local-map (with-current-buffer parserb
                                (current-local-map))
index 617ad7867f5130b3b13250a35776a22b4594a9fc..8c36623b72fabb5b37eb7f1a19ba08ad6befe359 100644 (file)
@@ -67,8 +67,7 @@ For Emacs Lisp, return addsuffix command on source files."
              (ede-proj-makefile-sourcevar this))))))
 
 (defvar semantic-ede-source-grammar-wisent
-  (ede-sourcecode "semantic-ede-grammar-source-wisent"
-                 :name "Wisent Grammar"
+  (ede-sourcecode :name "Wisent Grammar"
                  :sourcepattern "\\.wy$"
                  :garbagepattern '("*-wy.el")
                  )
@@ -80,13 +79,11 @@ For Emacs Lisp, return addsuffix command on source files."
 
 (defvar semantic-ede-grammar-compiler-wisent
   (semantic-ede-grammar-compiler-class
-   "ede-emacs-wisent-compiler"
    :name "emacs"
    :variables '(("EMACS" . "emacs")
                ("EMACSFLAGS" . "-batch --no-site-file --eval '(setq debug-on-error t)'")
                ("require" . "$(foreach r,$(1),(require (quote $(r))))"))
    :rules (list (ede-makefile-rule
-                "elisp-inference-rule"
                 :target "%-wy.el"
                 :dependencies "%.wy"
                 :rules '("$(EMACS) $(EMACSFLAGS) $(addprefix -L ,$(LOADPATH)) \
@@ -98,8 +95,7 @@ For Emacs Lisp, return addsuffix command on source files."
 
 
 (defvar semantic-ede-source-grammar-bovine
-  (ede-sourcecode "semantic-ede-grammar-source-bovine"
-                 :name "Bovine Grammar"
+  (ede-sourcecode :name "Bovine Grammar"
                  :sourcepattern "\\.by$"
                  :garbagepattern '("*-by.el")
                  )
@@ -107,13 +103,11 @@ For Emacs Lisp, return addsuffix command on source files."
 
 (defvar semantic-ede-grammar-compiler-bovine
   (semantic-ede-grammar-compiler-class
-   "ede-emacs-wisent-compiler"
    :name "emacs"
    :variables '(("EMACS" . "emacs")
                ("EMACSFLAGS" . "-batch --no-site-file --eval '(setq debug-on-error t)'")
                ("require" . "$(foreach r,$(1),(require (quote $(r))))"))
    :rules (list (ede-makefile-rule
-                "elisp-inference-rule"
                 :target "%-by.el"
                 :dependencies "%.by"
                 :rules '("$(EMACS) $(EMACSFLAGS) $(addprefix -L ,$(LOADPATH)) \
index bc8b1a9ef27f6d69f7444bc8d69cf8715654a0ac..80844494c43a59ba79ebd728ee800298e3ad5807 100644 (file)
@@ -166,7 +166,6 @@ We can't use the built-in ring data structure because we need
 to delete some items from the ring when we don't have the data.")
 
 (defvar semantic-mru-bookmark-ring (semantic-bookmark-ring
-                                   "Ring"
                                    :ring (make-ring 20))
   "The MRU bookmark ring.
 This ring tracks the most recent active tags of interest.")
index a2c68ed3a638d1386c41a2a34ef0f7dff9b5e10d..e653d0a03dca66de86ab91f5ce082da575473c13 100644 (file)
@@ -309,7 +309,7 @@ are from nesting data types."
                             (list searchname)))
                   (fullsearchname nil)
 
-                  (miniscope (semantic-scope-cache "mini"))
+                  (miniscope (semantic-scope-cache))
                   ptag)
 
              ;; Find the next entry in the referenced type for
@@ -368,7 +368,7 @@ and PROTECTION is the level of protection offered by the relationship.
 Optional SCOPETYPES are additional scoped entities in which our parent might
 be found."
   (let ((lineage nil)
-       (miniscope (semantic-scope-cache "mini"))
+       (miniscope (semantic-scope-cache))
        )
     (oset miniscope parents parents)
     (oset miniscope scope scopetypes)
@@ -644,7 +644,7 @@ whose tags can be searched when needed, OR it may be a scope object."
          ;; We need to make a mini scope, and only include the misc bits
          ;; that will help in finding the parent.  We don't really need
          ;; to do any of the stuff related to variables and what-not.
-         (setq tmpscope (semantic-scope-cache "mini"))
+         (setq tmpscope (semantic-scope-cache))
          (let* ( ;; Step 1:
                 (scopetypes (cons type (semantic-analyze-scoped-types (point))))
                 (parents (semantic-analyze-scope-nested-tags (point) scopetypes))
index 7fe19324793443b1f9fc4d580f00c9f94a8e4991..1fdfd104a5e0d06a8aba3d9332d75fd42c232806 100644 (file)
@@ -378,7 +378,6 @@ Optional argument POINT is where to look for the environment."
     (when prefix
       (require 'semantic/analyze)
       (semantic-analyze-context
-       "Context-for-texinfo"
        :buffer (current-buffer)
        :scope nil
        :bounds bounds
index 3e2c4ebd12c1557042bf9f6da523d23402c7660d..276f2ace2f15a22231e9c0149f4c4b5d50607258 100644 (file)
@@ -88,7 +88,7 @@ the dictionary entries were for that block of text."
     (save-restriction
       (narrow-to-region start end)
       (let ((dict (srecode-create-dictionary t))
-           (state (srecode-extract-state "state"))
+           (state (srecode-extract-state))
            )
        (goto-char start)
        (srecode-extract-method template dict state)
index f885b49614d4ddcf2e5a957906d10fabe0a9f632..1d419c93ba734dd4c8c826cd73e0246d425bb5e2 100644 (file)
@@ -270,7 +270,7 @@ if that file is NEW, otherwise assume the mode has not changed."
   (if (not srecode-map-save-file)
       ;; 0) Create a MAP when in no save file mode.
       (when (not srecode-current-map)
-       (setq srecode-current-map (srecode-map "SRecode Map"))
+       (setq srecode-current-map (srecode-map))
        (message "SRecode map created in non-save mode.")
        )
 
@@ -290,8 +290,7 @@ if that file is NEW, otherwise assume the mode has not changed."
            (error "Change your SRecode map file"))))
       ;; Have a dir.  Make the object.
       (setq srecode-current-map
-           (srecode-map "SRecode Map"
-                        :file srecode-map-save-file)))
+           (srecode-map :file srecode-map-save-file)))
 
     ;; 2) Do we not have a current map?  If so load.
     (when (not srecode-current-map)
@@ -301,8 +300,7 @@ if that file is NEW, otherwise assume the mode has not changed."
        (error
         ;; There was an error loading the old map.  Create a new one.
         (setq srecode-current-map
-              (srecode-map "SRecode Map"
-                           :file srecode-map-save-file))))
+              (srecode-map :file srecode-map-save-file))))
       )
 
     )
index ef1d9e37c05bc1c6b9e2d895a494a4b0ca37fcaa..6c269e0d9140d37e35ea4f5aed0130a321957778 100644 (file)
@@ -494,7 +494,7 @@ section or ? for an ask variable."
          (let* ((macroend (match-beginning 0))
                 (raw (buffer-substring-no-properties
                       macrostart macroend))
-                (STATE (srecode-compile-state "TMP"))
+                (STATE (srecode-compile-state))
                 (inserter (condition-case nil
                               (srecode-compile-parse-inserter
                                raw STATE)
@@ -605,7 +605,6 @@ section or ? for an ask variable."
 
        (setq context-return
              (semantic-analyze-context-functionarg
-              "context-for-srecode"
               :buffer (current-buffer)
               :scope scope
               :bounds bounds