aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode
diff options
context:
space:
mode:
authorJoakim Verona2011-11-03 21:32:26 +0100
committerJoakim Verona2011-11-03 21:32:26 +0100
commit85a3fca5206d1a2bc466cdb5d8817e1bf69b8820 (patch)
tree191926a8d28bd511073c07eb601de3687dc1d806 /lisp/cedet/srecode
parent2e82ad10d1adbfd6fafe57d0c598912580f7ef67 (diff)
parent07a79ce4b45709f043dae5b905fd3268a242e106 (diff)
downloademacs-85a3fca5206d1a2bc466cdb5d8817e1bf69b8820.tar.gz
emacs-85a3fca5206d1a2bc466cdb5d8817e1bf69b8820.zip
upstream
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r--lisp/cedet/srecode/compile.el2
-rw-r--r--lisp/cedet/srecode/dictionary.el2
-rw-r--r--lisp/cedet/srecode/document.el2
-rw-r--r--lisp/cedet/srecode/insert.el4
-rw-r--r--lisp/cedet/srecode/java.el2
-rw-r--r--lisp/cedet/srecode/template.el2
-rw-r--r--lisp/cedet/srecode/texi.el2
7 files changed, 8 insertions, 8 deletions
diff --git a/lisp/cedet/srecode/compile.el b/lisp/cedet/srecode/compile.el
index 0a117bad9bc..052999bf7c8 100644
--- a/lisp/cedet/srecode/compile.el
+++ b/lisp/cedet/srecode/compile.el
@@ -103,7 +103,7 @@ stack is broken."
103;; work, and the smaller, simple inserter object is saved in 103;; work, and the smaller, simple inserter object is saved in
104;; the compiled templates. 104;; the compiled templates.
105;; 105;;
106;; See srecode-insert.el for the specialized classes. 106;; See srecode/insert.el for the specialized classes.
107;; 107;;
108(defclass srecode-template-inserter (eieio-named) 108(defclass srecode-template-inserter (eieio-named)
109 ((secondname :initarg :secondname 109 ((secondname :initarg :secondname
diff --git a/lisp/cedet/srecode/dictionary.el b/lisp/cedet/srecode/dictionary.el
index 06496160b8c..521532bed33 100644
--- a/lisp/cedet/srecode/dictionary.el
+++ b/lisp/cedet/srecode/dictionary.el
@@ -1,4 +1,4 @@
1;;; srecode-dictionary.el --- Dictionary code for the semantic recoder. 1;;; srecode/dictionary.el --- Dictionary code for the semantic recoder.
2 2
3;; Copyright (C) 2007-2011 Free Software Foundation, Inc. 3;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
4 4
diff --git a/lisp/cedet/srecode/document.el b/lisp/cedet/srecode/document.el
index bccc85fb82b..a52cadbfb2c 100644
--- a/lisp/cedet/srecode/document.el
+++ b/lisp/cedet/srecode/document.el
@@ -37,7 +37,7 @@
37;; Document has now been ported to srecode, using the semantic recoder 37;; Document has now been ported to srecode, using the semantic recoder
38;; as the templating engine. 38;; as the templating engine.
39 39
40;; This file combines srecode-document.el and srecode-document-vars.el 40;; This file combines srecode/document.el and srecode/document-vars.el
41;; from the CEDET repository. 41;; from the CEDET repository.
42 42
43(require 'srecode/args) 43(require 'srecode/args)
diff --git a/lisp/cedet/srecode/insert.el b/lisp/cedet/srecode/insert.el
index 931d0b3d73e..84964a9e8b4 100644
--- a/lisp/cedet/srecode/insert.el
+++ b/lisp/cedet/srecode/insert.el
@@ -1,4 +1,4 @@
1;;; srecode/insert --- Insert srecode templates to an output stream. 1;;; srecode/insert.el --- Insert srecode templates to an output stream.
2 2
3;; Copyright (C) 2005, 2007-2011 Free Software Foundation, Inc. 3;; Copyright (C) 2005, 2007-2011 Free Software Foundation, Inc.
4 4
@@ -911,7 +911,7 @@ this template instance."
911 (setq active (cdr active))) 911 (setq active (cdr active)))
912 (when (not tmpl) 912 (when (not tmpl)
913 ;; If it wasn't in this context, look to see if it 913 ;; If it wasn't in this context, look to see if it
914 ;; defines it's own context 914 ;; defines its own context
915 (setq tmpl (srecode-template-get-table (srecode-table) 915 (setq tmpl (srecode-template-get-table (srecode-table)
916 templatenamepart))) 916 templatenamepart)))
917 ) 917 )
diff --git a/lisp/cedet/srecode/java.el b/lisp/cedet/srecode/java.el
index 69534e053f1..4e76c15e300 100644
--- a/lisp/cedet/srecode/java.el
+++ b/lisp/cedet/srecode/java.el
@@ -1,4 +1,4 @@
1;;; srecode-java.el --- Srecode Java support 1;;; srecode/java.el --- Srecode Java support
2 2
3;; Copyright (C) 2009-2011 Free Software Foundation, Inc. 3;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
4 4
diff --git a/lisp/cedet/srecode/template.el b/lisp/cedet/srecode/template.el
index e0cf42b75df..5dd32a85786 100644
--- a/lisp/cedet/srecode/template.el
+++ b/lisp/cedet/srecode/template.el
@@ -1,4 +1,4 @@
1;;; srecode-template.el --- SRecoder template language parser support. 1;;; srecode/template.el --- SRecoder template language parser support.
2 2
3;; Copyright (C) 2005, 2007-2011 Free Software Foundation, Inc. 3;; Copyright (C) 2005, 2007-2011 Free Software Foundation, Inc.
4 4
diff --git a/lisp/cedet/srecode/texi.el b/lisp/cedet/srecode/texi.el
index 38d8e765d41..33440d04432 100644
--- a/lisp/cedet/srecode/texi.el
+++ b/lisp/cedet/srecode/texi.el
@@ -1,4 +1,4 @@
1;;; srecode-texi.el --- Srecode texinfo support. 1;;; srecode/texi.el --- Srecode texinfo support.
2 2
3;; Copyright (C) 2008-2011 Free Software Foundation, Inc. 3;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
4 4