diff options
author | Eli Zaretskii <eliz@gnu.org> | 2017-06-01 21:24:15 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-06-01 21:24:15 +0300 |
commit | e5de79992a22f2932abb5f1f2600f576a60ae6ef (patch) | |
tree | dc88db98473bd63cb1a7e9362e210ff65b67074b /test/manual/redisplay-testsuite.el | |
parent | 7c9ac111c5e5d92e620b666893993d5dc562e483 (diff) | |
download | emacs-e5de79992a22f2932abb5f1f2600f576a60ae6ef.tar.gz |
Revert "Add customizable to display raw bytes as hex"
This reverts commit 7c9ac111c5e5d92e620b666893993d5dc562e483.
Diffstat (limited to 'test/manual/redisplay-testsuite.el')
-rw-r--r-- | test/manual/redisplay-testsuite.el | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/test/manual/redisplay-testsuite.el b/test/manual/redisplay-testsuite.el index 2175cbab1b7..694d55ab1db 100644 --- a/test/manual/redisplay-testsuite.el +++ b/test/manual/redisplay-testsuite.el @@ -34,8 +34,7 @@ (setq overlay (make-overlay opoint (point))) (while props (overlay-put overlay (car props) (cadr props)) - (setq props (cddr props))) - overlay)) + (setq props (cddr props))))) (defun test-redisplay-1 () (insert "Test 1: Displaying adjacent and overlapping overlays:\n\n") @@ -294,29 +293,6 @@ static unsigned char x_bits[] = {0xff, 0x81, 0xbd, 0xa5, 0xa5, 0xbd, 0x81, 0xff (insert "\n")) -(defvar test-redisplay-5-expected-overlay nil) -(defvar test-redisplay-5-result-overlay nil) - -(defun test-redisplay-5-toggle (_event) - (interactive "e") - (setq display-raw-bytes-as-hex (not display-raw-bytes-as-hex)) - (let ((label (if display-raw-bytes-as-hex "\\x80" "\\200"))) - (overlay-put test-redisplay-5-expected-overlay 'display - (propertize label 'face 'escape-glyph)))) - -(defun test-redisplay-5 () - (insert "Test 5: Display of raw bytes:\n\n") - (insert " Expected: ") - (setq test-redisplay-5-expected-overlay - (test-insert-overlay " " 'display - (propertize "\\200" 'face 'escape-glyph))) - (insert "\n Result: ") - (setq test-redisplay-5-result-overlay - (test-insert-overlay " " 'display "\200")) - (insert "\n\n") - (insert-button "Toggle between octal and hex display" - 'action 'test-redisplay-5-toggle)) - (defun test-redisplay () (interactive) @@ -333,6 +309,5 @@ static unsigned char x_bits[] = {0xff, 0x81, 0xbd, 0xa5, 0xa5, 0xbd, 0x81, 0xff (test-redisplay-2) (test-redisplay-3) (test-redisplay-4) - (test-redisplay-5) (goto-char (point-min)))) |