aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-08-17 19:13:55 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:03 -0400
commitbecf0483bf5ca42b0aab7533ed02ff21cc509c1a (patch)
treeb431bad88e2b989119d463feaaba0ad0cab60c2c /lisp
parent8e1ba084511f51936aa59f27ec0310614d4a3125 (diff)
avoid recursive `require' when loading semantic
Diffstat (limited to 'lisp')
-rw-r--r--lisp/cedet/semantic.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/cedet/semantic.el b/lisp/cedet/semantic.el
index 5fc51e02a0..57bb822f60 100644
--- a/lisp/cedet/semantic.el
+++ b/lisp/cedet/semantic.el
@@ -1202,7 +1202,8 @@ Call `semantic-symref-hits-in-region' to identify local references." t nil)
;; Semantic-util is a part of the semantic API. Include it last
;; because it depends on semantic.
-(require 'semantic/util)
+(eval-after-load 'semantic
+ '(require 'semantic/util))
;; (require 'semantic/load)