emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108150: * lisp/international/mule


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108150: * lisp/international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
Date: Fri, 02 Nov 2012 02:01:45 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108150
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2012-05-07 17:26:08 -0400
message:
  * lisp/international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
  * etc/NEWS: Edits.
  
  Ref: http://lists.gnu.org/archive/html/emacs-devel/2012-04/msg00434.html
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/international/mule.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-05-07 19:51:25 +0000
+++ b/etc/NEWS  2012-05-07 21:26:08 +0000
@@ -65,6 +65,9 @@
 frames, if emacsclient is only told to open a new frame without
 specifying any file to visit or expression to evaluate.
 
+** Using "unibyte: t" in Lisp source files is obsolete.
+Using "coding: raw-text" instead.
+
 
 * Editing Changes in Emacs 24.2
 
@@ -128,7 +131,8 @@
 
 ** Calendar
 
-*** The calendars produced by cal-html can optionally include holidays.
+*** The calendars produced by cal-html include holidays.
+Customize cal-html-holidays to change this.
 
 ** Customize
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-05-07 20:48:41 +0000
+++ b/lisp/ChangeLog    2012-05-07 21:26:08 +0000
@@ -1,3 +1,7 @@
+2012-05-07  Glenn Morris  <address@hidden>
+
+       * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
+
 2012-05-07  Stefan Monnier  <address@hidden>
 
        * loadup.el: Preload newcomment.el.

=== modified file 'lisp/international/mule.el'
--- a/lisp/international/mule.el        2012-04-12 01:09:15 +0000
+++ b/lisp/international/mule.el        2012-05-07 21:26:08 +0000
@@ -30,6 +30,7 @@
 
 ;;; Code:
 
+;; FIXME?  Are these still relevant?  Nothing uses them AFAICS.
 (defconst mule-version "6.0 (HANACHIRUSATO)" "\
 Version number and name of this version of MULE (multilingual environment).")
 
@@ -1835,6 +1836,8 @@
                       (re-search-forward
                        "\\(.*;\\)?[ \t]*unibyte:[ \t]*\\([^ ;]+\\)"
                        head-end t))
+              (display-warning 'mule "`unibyte: t' is obsolete; \
+use \"coding: 'raw-text\" instead." :warning)
              (setq coding-system 'raw-text))
            (when (and (not coding-system)
                       (re-search-forward


reply via email to

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