emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog international/mule.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog international/mule.el
Date: Sun, 19 Jul 2009 00:40:10 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/07/19 00:40:09

Modified files:
        lisp           : ChangeLog 
        lisp/international: mule.el 

Log message:
        (auto-coding-regexp-alist): Only match BABYL... at the start of
        buffer, not of lines.  (Bug#3790)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15830&r2=1.15831
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/international/mule.el?cvsroot=emacs&r1=1.286&r2=1.287

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15830
retrieving revision 1.15831
diff -u -b -r1.15830 -r1.15831
--- ChangeLog   19 Jul 2009 00:33:58 -0000      1.15830
+++ ChangeLog   19 Jul 2009 00:40:04 -0000      1.15831
@@ -1,5 +1,8 @@
 2009-07-19  Glenn Morris  <address@hidden>
 
+       * international/mule.el (auto-coding-regexp-alist): Only match
+       BABYL... at the start of buffer, not of lines.  (Bug#3790)
+
        * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
        non-calendar buffers (Bug#3862).  Restore "not on a date" message.
        (cal-menu-context-mouse-menu): Doc fix.

Index: international/mule.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/international/mule.el,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -b -r1.286 -r1.287
--- international/mule.el       2 Jul 2009 06:42:46 -0000       1.286
+++ international/mule.el       19 Jul 2009 00:40:08 -0000      1.287
@@ -1,6 +1,7 @@
 ;;; mule.el --- basic commands for multilingual environment
 
-;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 
2007, 2008, 2009
+;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+;;   2007, 2008, 2009
 ;;   Free Software Foundation, Inc.
 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 ;;   2005, 2006, 2007, 2008, 2009
@@ -1646,7 +1647,7 @@
                       (symbol :tag "Coding system"))))
 
 (defcustom auto-coding-regexp-alist
-  '(("^BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion)
+  '(("\\`BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion)
     ("\\`\xFE\xFF" . utf-16be-with-signature)
     ("\\`\xFF\xFE" . utf-16le-with-signature)
     ("\\`\xEF\xBB\xBF" . utf-8-with-signature)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]