]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix 'hack-local-variables' when EOL conversion is inhibited
authorEli Zaretskii <eliz@gnu.org>
Mon, 6 Feb 2023 16:28:21 +0000 (18:28 +0200)
committerEli Zaretskii <eliz@gnu.org>
Mon, 6 Feb 2023 16:28:21 +0000 (18:28 +0200)
* lisp/files.el (hack-local-variables--find-variables): Replace
CRs with newlines only if the original buffer is under explicit
selective-display.  (Bug#61321)

lisp/files.el

index 9da824461123bb7f5818270373af314fb4ebb809..b0ec6bb09d09f955591f7db4356225c0a4f016e9 100644 (file)
@@ -4017,6 +4017,7 @@ major-mode."
          (forward-line 1)
          (let ((startpos (point))
                endpos
+                (selective-p (eq selective-display t))
                (thisbuf (current-buffer)))
            (save-excursion
              (unless (let ((case-fold-search t))
@@ -4033,7 +4034,8 @@ major-mode."
            (with-temp-buffer
              (insert-buffer-substring thisbuf startpos endpos)
              (goto-char (point-min))
-             (subst-char-in-region (point) (point-max) ?\^m ?\n)
+              (if selective-p
+                 (subst-char-in-region (point) (point-max) ?\r ?\n))
              (while (not (eobp))
                ;; Discard the prefix.
                (if (looking-at prefix)