From 2e2246388b7dec87dfb65e79ff0827b887c7640b Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 13 Oct 1999 22:45:28 +0000 Subject: [PATCH] (select-safe-coding-system, leim-list-header): avoid the use of strings that start with backslash newline since lread.c:read1 has a hack to turn those strings into integer 0 during the loadup.el process. --- lisp/international/mule-cmds.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index bdea029229e..12d94900ad2 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -533,8 +533,8 @@ and TO is ignored." (setq non-safe-chars (cdr non-safe-chars))) (if (< shown len) (insert (format "%27s\n" "...")))) - (insert (format "\ -These can't be encoded safely by the coding system %s. + (insert (format +"These can't be encoded safely by the coding system %s. Please select one from the following safe coding systems:\n" default-coding-system)) @@ -755,8 +755,8 @@ This file contains a list of libraries of Emacs input methods (LEIM) in the format of Lisp expression for registering each input method. Emacs loads this file at startup time.") -(defvar leim-list-header (format "\ -;;; %s -- list of LEIM (Library of Emacs Input Method) +(defvar leim-list-header (format +";;; %s -- list of LEIM (Library of Emacs Input Method) ;; ;; This file contains a list of LEIM (Library of Emacs Input Method) ;; in the same directory as this file. Loading this file registers -- 2.39.5