aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMasatake YAMATO <[email protected]>2004-03-09 01:25:27 +0000
committerMasatake YAMATO <[email protected]>2004-03-09 01:25:27 +0000
commit4f918f606bd43ea796441a75fa27414efc0e03f8 (patch)
treefc349dc1158c223aaebc4f261fc98239736ee6d9 /lisp
parent1a94f9c83e1f474572dc01e9f5a1d57c96409124 (diff)
2004-03-09 Masatake YAMATO <[email protected]>
* hexl.el (hexl-mode): Use `make-local-variable' instead of `make-variable-buffer-local'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/hexl.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5927438748..af42e158cd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-09 Masatake YAMATO <[email protected]>
+
+ * hexl.el (hexl-mode): Use `make-local-variable' instead of
+ `make-variable-buffer-local'.
+
2004-03-08 Michael Albinus <[email protected]>
* find-dired.el (find-dired): Call `shell-command' instead of
diff --git a/lisp/hexl.el b/lisp/hexl.el
index 40e3c929c5..9fd21824f2 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"