changeset 3137:1e7d462c176f

(hexlify-command, dehexlify-command): Use exec-directory.
author Richard M. Stallman <rms@gnu.org>
date Wed, 26 May 1993 21:17:31 +0000
parents 76c8b5e00948
children 80ce80f189f7
files lisp/hexl.el
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/hexl.el	Wed May 26 20:38:52 1993 +0000
+++ b/lisp/hexl.el	Wed May 26 21:17:31 1993 +0000
@@ -1,4 +1,4 @@
-;;; hexl-mode.el --- edit a file in a hex dump format using the hexl filter.
+;;; hexl.el --- edit a file in a hex dump format using the hexl filter.
 
 ;; Copyright (C) 1989 Free Software Foundation, Inc.
 
@@ -62,11 +62,13 @@
 (defvar hexl-options (format "-hex %s" hexl-iso)
   "Options to hexl-program that suit your needs.")
 
-(defvar hexlify-command (format "%s %s" hexl-program hexl-options)
+(defvar hexlify-command
+  (format "%s%s %s" exec-directory hexl-program hexl-options)
   "The command to use to hexlify a buffer.  It is the concatination of
 `hexl-program' and `hexl-options'.")
 
-(defvar dehexlify-command (format "%s -de %s" hexl-program hexl-options)
+(defvar dehexlify-command
+  (format "%s%s -de %s" exec-directory hexl-program hexl-options)
   "The command to use to unhexlify a buffer.  It is the concatination of
 `hexl-program', the option \"-de\", and `hexl-options'.")