summaryrefslogtreecommitdiff
path: root/lisp/hexl.el
diff options
context:
space:
mode:
authorMasatake YAMATO <jet@gyve.org>2004-03-09 01:25:27 +0000
committerMasatake YAMATO <jet@gyve.org>2004-03-09 01:25:27 +0000
commit4f918f606bd43ea796441a75fa27414efc0e03f8 (patch)
treefc349dc1158c223aaebc4f261fc98239736ee6d9 /lisp/hexl.el
parent1a94f9c83e1f474572dc01e9f5a1d57c96409124 (diff)
downloademacs-4f918f606bd43ea796441a75fa27414efc0e03f8.tar.gz
2004-03-09 Masatake YAMATO <jet@gyve.org>
* hexl.el (hexl-mode): Use `make-local-variable' instead of `make-variable-buffer-local'.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r--lisp/hexl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el
index 40e3c929c59..9fd21824f26 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -239,7 +239,7 @@ You can use \\[hexl-find-file] to visit a file in Hexl mode.
(add-hook 'change-major-mode-hook 'hexl-maybe-dehexlify-buffer nil t)
;; Set a callback function for eldoc.
- (set (make-variable-buffer-local 'eldoc-print-current-symbol-info-function)
+ (set (make-local-variable 'eldoc-print-current-symbol-info-function)
'hexl-print-current-point-info)
(eldoc-add-command-completions "hexl-")
(eldoc-remove-command "hexl-save-buffer"