From: Lars Ingebrigtsen Date: Thu, 13 Jun 2019 00:54:24 +0000 (+0200) Subject: Revert previous ps-mode.el change X-Git-Tag: emacs-27.0.90~2580 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=986e333eaafd581f3d4d97793723a9333fce9790;p=emacs.git Revert previous ps-mode.el change * lisp/progmodes/ps-mode.el (ps-mode-octal-region): Revert previous change because the `string-make-unibyte' insertion was the previous single change (in 2013) to this file, so it must have some subtle meaning or other. --- diff --git a/lisp/progmodes/ps-mode.el b/lisp/progmodes/ps-mode.el index cf09b98b491..0ea2bee0aa2 100644 --- a/lisp/progmodes/ps-mode.el +++ b/lisp/progmodes/ps-mode.el @@ -739,7 +739,8 @@ Only one `%' is removed, and it has to be in the first column." (setq i (1+ i)) (backward-char) (insert (format "\\%03o" (string-to-char - (buffer-substring (point) (1+ (point)))))) + (string-make-unibyte + (buffer-substring (point) (1+ (point))))))) (delete-char 1)) (message "%d change%s made" i (if (= i 1) "" "s")) (set-marker endm nil)))))