aboutsummaryrefslogtreecommitdiffhomepage
path: root/editors
diff options
context:
space:
mode:
authorGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-09-15 17:12:06 +0000
committerGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-09-15 17:12:06 +0000
commitf4c6e4b37e131b771a8a8eac0534ce8ade504dd7 (patch)
tree5e93e2f13376ca0c8c580a632b02ff3ee69642bc /editors
parent721995d00aedd42856653f1135c41f9736501590 (diff)
Fix protobuf-mode on XEmacs.
Diffstat (limited to 'editors')
-rw-r--r--editors/protobuf-mode.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/protobuf-mode.el b/editors/protobuf-mode.el
index 3337c1f8..9ac0c727 100644
--- a/editors/protobuf-mode.el
+++ b/editors/protobuf-mode.el
@@ -206,7 +206,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)