aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2002-02-28 16:20:16 +0000
committerPavel Janík2002-02-28 16:20:16 +0000
commita0164df52c6668172dca26519b9cf526d296c368 (patch)
tree9fe2d8c195db9d83288548fe02204a783cb70ed3
parentf7ccf929eb7392238f0b5b0db65bc02057868a0b (diff)
downloademacs-a0164df52c6668172dca26519b9cf526d296c368.tar.gz
emacs-a0164df52c6668172dca26519b9cf526d296c368.zip
(hexl-options): Doc fix.
Update Commentary section.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/hexl.el13
2 files changed, 6 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 14f1ef878a7..bf0b7604eaf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12002-02-28 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12002-02-28 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 2
3 * hexl.el (hexl-options): Doc fix.
4 Update Commentary section.
5
3 * textmodes/sgml-mode.el (sgml-specials, sgml-quick-keys): 6 * textmodes/sgml-mode.el (sgml-specials, sgml-quick-keys):
4 Doc fixes. 7 Doc fixes.
5 8
diff --git a/lisp/hexl.el b/lisp/hexl.el
index 6a4408e4d4e..c8f1a79b185 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -29,16 +29,9 @@
29;; a program called hexl, supplied with the GNU Emacs distribution, that 29;; a program called hexl, supplied with the GNU Emacs distribution, that
30;; can filter a binary into an editable format or from the format back into 30;; can filter a binary into an editable format or from the format back into
31;; binary. For full instructions, invoke `hexl-mode' on an empty buffer and 31;; binary. For full instructions, invoke `hexl-mode' on an empty buffer and
32;; do `M-x describe-mode'. 32;; do M-x `describe-mode'.
33;; 33;;
34;; This may be useful in your .emacs: 34;; NOTE: Remember to change `hexl-program' or `hexl-options' if needed.
35;;
36;; (autoload 'hexl-find-file "hexl"
37;; "Edit file FILENAME in hexl-mode." t)
38;;
39;; (define-key global-map "\C-c\C-h" 'hexl-find-file)
40;;
41;; NOTE: Remember to change HEXL-PROGRAM or HEXL-OPTIONS if needed.
42;; 35;;
43;; Currently hexl only supports big endian hex output with 16 bit 36;; Currently hexl only supports big endian hex output with 16 bit
44;; grouping. 37;; grouping.
@@ -72,7 +65,7 @@ and \"-de\" when dehexlifying a buffer."
72 :group 'hexl) 65 :group 'hexl)
73 66
74(defcustom hexl-options (format "-hex %s" hexl-iso) 67(defcustom hexl-options (format "-hex %s" hexl-iso)
75 "Options to hexl-program that suit your needs." 68 "Options to `hexl-program' that suit your needs."
76 :type 'string 69 :type 'string
77 :group 'hexl) 70 :group 'hexl)
78 71