* 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.
(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)))))