diff options
| author | Glenn Morris | 2012-05-07 17:26:08 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-05-07 17:26:08 -0400 |
| commit | 037945709a73158972078ea4f0f8daa1e7181756 (patch) | |
| tree | cefa3c0ee76eae0dad72da7ebbf84f695383f184 | |
| parent | 28be5ce7b02a715ccc7960fa05ca96111c97ced9 (diff) | |
| download | emacs-037945709a73158972078ea4f0f8daa1e7181756.tar.gz emacs-037945709a73158972078ea4f0f8daa1e7181756.zip | |
* 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
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/international/mule.el | 3 |
3 files changed, 12 insertions, 1 deletions
| @@ -65,6 +65,9 @@ ImageMagick to view images, set | |||
| 65 | frames, if emacsclient is only told to open a new frame without | 65 | frames, if emacsclient is only told to open a new frame without |
| 66 | specifying any file to visit or expression to evaluate. | 66 | specifying any file to visit or expression to evaluate. |
| 67 | 67 | ||
| 68 | ** Using "unibyte: t" in Lisp source files is obsolete. | ||
| 69 | Using "coding: raw-text" instead. | ||
| 70 | |||
| 68 | 71 | ||
| 69 | * Editing Changes in Emacs 24.2 | 72 | * Editing Changes in Emacs 24.2 |
| 70 | 73 | ||
| @@ -128,7 +131,8 @@ see the `apropos' Custom group for details. | |||
| 128 | 131 | ||
| 129 | ** Calendar | 132 | ** Calendar |
| 130 | 133 | ||
| 131 | *** The calendars produced by cal-html can optionally include holidays. | 134 | *** The calendars produced by cal-html include holidays. |
| 135 | Customize cal-html-holidays to change this. | ||
| 132 | 136 | ||
| 133 | ** Customize | 137 | ** Customize |
| 134 | 138 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b0a042f0664..db27b30a034 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-05-07 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete. | ||
| 4 | |||
| 1 | 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * loadup.el: Preload newcomment.el. | 7 | * loadup.el: Preload newcomment.el. |
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 1f88df52fd4..3257b069787 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -30,6 +30,7 @@ | |||
| 30 | 30 | ||
| 31 | ;;; Code: | 31 | ;;; Code: |
| 32 | 32 | ||
| 33 | ;; FIXME? Are these still relevant? Nothing uses them AFAICS. | ||
| 33 | (defconst mule-version "6.0 (HANACHIRUSATO)" "\ | 34 | (defconst mule-version "6.0 (HANACHIRUSATO)" "\ |
| 34 | Version number and name of this version of MULE (multilingual environment).") | 35 | Version number and name of this version of MULE (multilingual environment).") |
| 35 | 36 | ||
| @@ -1835,6 +1836,8 @@ If nothing is specified, the return value is nil." | |||
| 1835 | (re-search-forward | 1836 | (re-search-forward |
| 1836 | "\\(.*;\\)?[ \t]*unibyte:[ \t]*\\([^ ;]+\\)" | 1837 | "\\(.*;\\)?[ \t]*unibyte:[ \t]*\\([^ ;]+\\)" |
| 1837 | head-end t)) | 1838 | head-end t)) |
| 1839 | (display-warning 'mule "`unibyte: t' is obsolete; \ | ||
| 1840 | use \"coding: 'raw-text\" instead." :warning) | ||
| 1838 | (setq coding-system 'raw-text)) | 1841 | (setq coding-system 'raw-text)) |
| 1839 | (when (and (not coding-system) | 1842 | (when (and (not coding-system) |
| 1840 | (re-search-forward | 1843 | (re-search-forward |