aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Engster2012-10-08 21:40:50 +0200
committerDavid Engster2012-10-08 21:40:50 +0200
commitcaec1ef5a053b51b6d160d0ca8b231f3c4225b1d (patch)
tree81b1ef26abea9b5779231786bf9798bacfe98d88
parentf99714cef2fd9ea5adbe5ea202cacd01478b3710 (diff)
downloademacs-caec1ef5a053b51b6d160d0ca8b231f3c4225b1d.tar.gz
emacs-caec1ef5a053b51b6d160d0ca8b231f3c4225b1d.zip
* semantic/bovine/el.el: Add `semantic-default-elisp-setup' to
`emacs-lisp-mode-hook'. This was accidentally removed during the CEDET update (2012-10-01T18:10:29Z!cyd@gnu.org).
-rw-r--r--lisp/cedet/ChangeLog6
-rw-r--r--lisp/cedet/semantic/bovine/el.el2
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog
index ea102dddf2f..14e8d6c1d64 100644
--- a/lisp/cedet/ChangeLog
+++ b/lisp/cedet/ChangeLog
@@ -1,3 +1,9 @@
12012-10-08 David Engster <deng@randomsample.de>>
2
3 * semantic/bovine/el.el: Add `semantic-default-elisp-setup' to
4 `emacs-lisp-mode-hook'. This was accidentally removed during the
5 CEDET update (2012-10-01T18:10:29Z!cyd@gnu.org).
6
12012-10-07 David Engster <deng@randomsample.de> 72012-10-07 David Engster <deng@randomsample.de>
2 8
3 * semantic/wisent/python.el (semantic-ctxt-current-function) 9 * semantic/wisent/python.el (semantic-ctxt-current-function)
diff --git a/lisp/cedet/semantic/bovine/el.el b/lisp/cedet/semantic/bovine/el.el
index 7bad1483dc3..ea99df9edb9 100644
--- a/lisp/cedet/semantic/bovine/el.el
+++ b/lisp/cedet/semantic/bovine/el.el
@@ -944,6 +944,8 @@ ELisp variables can be pretty long, so track this one too.")
944 "Setup hook function for Emacs Lisp files and Semantic." 944 "Setup hook function for Emacs Lisp files and Semantic."
945 ) 945 )
946 946
947(add-hook 'emacs-lisp-mode-hook 'semantic-default-elisp-setup)
948
947;;; LISP MODE 949;;; LISP MODE
948;; 950;;
949;; @TODO: Lisp supports syntaxes that Emacs Lisp does not. 951;; @TODO: Lisp supports syntaxes that Emacs Lisp does not.