From d0332953cda33fb4f8e24ebff9c49159b69c43d6 Mon Sep 17 00:00:00 2001 From: Wink Saville Date: Sat, 29 May 2010 13:00:38 -0700 Subject: Add protobuf 2.3.0 sources This is the contents of protobuf-2.3.0.tar.bz2 from http://code.google.com/p/protobuf/downloads/list. Change-Id: Idfde09ce7ef5ac027b07ee83f2674fbbed5c30b2 --- editors/protobuf-mode.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'editors') diff --git a/editors/protobuf-mode.el b/editors/protobuf-mode.el index 3337c1f..09aecc9 100644 --- a/editors/protobuf-mode.el +++ b/editors/protobuf-mode.el @@ -71,7 +71,8 @@ ;; This mode does not inherit properties from other modes. So, we do not use ;; the usual `c-add-language' function. -(put 'protobuf-mode 'c-mode-prefix "protobuf-") +(eval-and-compile + (put 'protobuf-mode 'c-mode-prefix "protobuf-")) ;; The following code uses of the `c-lang-defconst' macro define syntactic ;; features of protocol buffer language. Refer to the documentation in the @@ -206,7 +207,8 @@ Key bindings: abbrev-mode t) (use-local-map protobuf-mode-map) (c-initialize-cc-mode t) - (c-make-emacs-variables-local) + (if (fboundp 'c-make-emacs-variables-local) + (c-make-emacs-variables-local)) (c-init-language-vars protobuf-mode) (c-common-init 'protobuf-mode) (easy-menu-add protobuf-menu) -- cgit v1.1