From 520895898903628051331b6d848cdd7f92861aac Mon Sep 17 00:00:00 2001 From: tomo Date: Sun, 10 Oct 1999 11:06:08 +0000 Subject: [PATCH] 1999-10-08 Daiki Ueno * bytecomp.el (byte-compile-insert-header): Fix regexp. --- lisp/bytecomp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/bytecomp.el b/lisp/bytecomp.el index 0122e26..68d0fb3 100644 --- a/lisp/bytecomp.el +++ b/lisp/bytecomp.el @@ -1760,7 +1760,7 @@ With argument, insert value in current buffer after the form." (and (eq (point) (point-max)) (not (re-search-backward - "\\u[0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f]" nil t)))) + "\\\\u[0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f]" nil t)))) (setq buffer-file-coding-system 'raw-text) (cond ((featurep 'utf-2000) (insert "(require 'mule)\n;;;###coding system: utf-8\n") -- 1.7.10.4