]> rtime.felk.cvut.cz Git - sojka/company-mode.git/commitdiff
Added compatibility for CEDET in Emacs 23.2.
authorNikolaj Schumacher <git@nschum.de>
Wed, 6 Jan 2010 19:04:41 +0000 (20:04 +0100)
committerNikolaj Schumacher <git@nschum.de>
Wed, 6 Jan 2010 19:04:41 +0000 (20:04 +0100)
company-semantic.el
company.el

index 36a50d7b406f73b6bc26e7014ee9e16aa8133b79..3fd7226e94d7a9cca867b987f35f7948d3141c12 100644 (file)
@@ -18,7 +18,8 @@
 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 (require 'company)
-(require 'semantic-ia)
+(or (require 'semantic-ia nil t)
+    (require 'semantic/ia))
 (eval-when-compile (require 'cl))
 
 (defcustom company-semantic-metadata-function 'company-semantic-summary-and-doc
index 714ac30a40616b83b3c4eaf20be391633c44c2dd..0e5b9a84aca790924f08c91000d736ca7a4beae7 100644 (file)
@@ -65,6 +65,8 @@
 ;;
 ;;; Change Log:
 ;;
+;;    Added compatibility for CEDET in Emacs 23.2.
+;;
 ;; 2009-05-07 (0.4.3)
 ;;    Added `company-other-backend'.
 ;;    Idle completion no longer interrupts multi-key command input.