summaryrefslogtreecommitdiff
path: root/lisp/progmodes/ebnf2ps.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-09-02 09:19:54 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-09-02 09:19:54 +0200
commit891be6f14065950465bf6e360013ceae0cb955bd (patch)
tree8a34f11d604faa1e943cbd1113bdc5c1c0135df3 /lisp/progmodes/ebnf2ps.el
parent7d7e8a9c15cd509e731686f8e63fc1d574f4b5c0 (diff)
downloademacs-891be6f14065950465bf6e360013ceae0cb955bd.tar.gz
Fix up previous ebfn2ps tweak
* lisp/progmodes/ebnf2ps.el (ebnf-print-buffer): Remove NOOP decode step.
Diffstat (limited to 'lisp/progmodes/ebnf2ps.el')
-rw-r--r--lisp/progmodes/ebnf2ps.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el
index 3be3d7032db..6ad55fc1423 100644
--- a/lisp/progmodes/ebnf2ps.el
+++ b/lisp/progmodes/ebnf2ps.el
@@ -2248,9 +2248,7 @@ number, prompt the user for the name of the file to save in."
;; Make non-ASCII work (sort of).
(lambda (string)
(ps-output t (and string
- (encode-coding-string
- (decode-coding-string string 'utf-8)
- 'iso-8859-1))))))
+ (encode-coding-string string 'iso-8859-1))))))
(ebnf-print-region (point-min) (point-max) filename)))
;;;###autoload