diff options
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r-- | lisp/cedet/srecode/compile.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/insert.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/mode.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/srecode/compile.el b/lisp/cedet/srecode/compile.el index 769c0137e68..5b3d8fb50fc 100644 --- a/lisp/cedet/srecode/compile.el +++ b/lisp/cedet/srecode/compile.el @@ -197,7 +197,7 @@ Arguments ESCAPE-START and ESCAPE-END are the current escape sequences in use." (defun srecode-compile-templates () "Compile a semantic recode template file into a mode-local variable." (interactive) - (require 'srecode-insert) + (require 'srecode/insert) (message "Compiling template %s..." (file-name-nondirectory (buffer-file-name))) (let ((tags (semantic-fetch-tags)) diff --git a/lisp/cedet/srecode/insert.el b/lisp/cedet/srecode/insert.el index 743c8e8e652..e1772b3c578 100644 --- a/lisp/cedet/srecode/insert.el +++ b/lisp/cedet/srecode/insert.el @@ -159,7 +159,7 @@ Buffer based features related to change hooks is handled one level up." ;; while the field insert tool is loaded via autoloads during ;; the insert. (when (eq srecode-insert-ask-variable-method 'field) - (require 'srecode-fields)) + (require 'srecode/fields)) (let ((srecode-field-archive nil) ; Prevent field leaks during insert (start (point)) ; Beginning of the region. diff --git a/lisp/cedet/srecode/mode.el b/lisp/cedet/srecode/mode.el index 3100a392cf2..f8493138e49 100644 --- a/lisp/cedet/srecode/mode.el +++ b/lisp/cedet/srecode/mode.el @@ -42,7 +42,7 @@ "Non-nil in buffers with Semantic Recoder macro keybindings." :group 'srecode :type 'boolean - :require 'srecode-mode + :require 'srecode/mode :initialize 'custom-initialize-default :set (lambda (sym val) (global-srecode-minor-mode (if val 1 -1)))) |