]> git.eshelyaron.com Git - emacs.git/commitdiff
-batch should not affect ‘’ -> `' display
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 2 Jul 2015 16:29:51 +0000 (09:29 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 2 Jul 2015 16:30:13 +0000 (09:30 -0700)
* lisp/startup.el (command-line): Do the ‘’ -> `' check even if
-batch (Bug#20926).

lisp/startup.el

index 4f1e3150abc7669c689c75d5f2ebaa06ae69924d..cfe22690df8cdfdf155534a9a1ae6a8713aeecc6 100644 (file)
@@ -1018,12 +1018,11 @@ please check its value")
     (setq no-blinking-cursor t))
 
   ;; If curved quotes don't work, display ASCII approximations.
-  (unless noninteractive
-    (dolist (char-repl '((?‘ . [?\`]) (?’ . [?\']) (?“ . [?\"]) (?” . [?\"])))
-      (when (not (char-displayable-p (car char-repl)))
-        (or standard-display-table
-            (setq standard-display-table (make-display-table)))
-        (aset standard-display-table (car char-repl) (cdr char-repl)))))
+  (dolist (char-repl '((?‘ . [?\`]) (?’ . [?\']) (?“ . [?\"]) (?” . [?\"])))
+    (when (not (char-displayable-p (car char-repl)))
+      (or standard-display-table
+          (setq standard-display-table (make-display-table)))
+      (aset standard-display-table (car char-repl) (cdr char-repl))))
 
   ;; Re-evaluate predefined variables whose initial value depends on
   ;; the runtime context.