aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorMiles Bader2005-09-11 22:21:01 +0000
committerMiles Bader2005-09-11 22:21:01 +0000
commitff8d296438e69b8cf701d95b6ccd271c416c46fd (patch)
tree44b388101b40592656ad4c5033aabe2a1ae4b462 /etc
parent389cb481135145b80a679beec8cdc8fed75682c5 (diff)
parenta8f6d239d2d541ec874a22000e0542c20fd55a67 (diff)
downloademacs-ff8d296438e69b8cf701d95b6ccd271c416c46fd.tar.gz
emacs-ff8d296438e69b8cf701d95b6ccd271c416c46fd.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-81
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 532-541) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 112-115) - Update from CVS
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog9
-rw-r--r--etc/MORE.STUFF2
-rw-r--r--etc/NEWS12
-rw-r--r--etc/PROBLEMS30
4 files changed, 52 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index bf83b688b17..fb751b8ac22 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,12 @@
12005-09-00 Kevin Ryde <user42@zip.com.au>
2
3 * MORE.STUFF: Update url for calculator.el.
4
52005-09-08 Kenichi Handa <handa@m17n.org>
6
7 * PROBLEMS: Show a patch for Mule-UCS to make it byte-compiled
8 correctly.
9
12005-08-31 Michael Albinus <michael.albinus@gmx.de> 102005-08-31 Michael Albinus <michael.albinus@gmx.de>
2 11
3 * NEWS: Add entry for `make-auto-save-file-name'. 12 * NEWS: Add entry for `make-auto-save-file-name'.
diff --git a/etc/MORE.STUFF b/etc/MORE.STUFF
index 0a81c1817a4..2121267e50e 100644
--- a/etc/MORE.STUFF
+++ b/etc/MORE.STUFF
@@ -43,7 +43,7 @@ You might find bug-fixes or enhancements in these places.
43 43
44 * BS: <URL:http://www.geekware.de/software/emacs/index.html> 44 * BS: <URL:http://www.geekware.de/software/emacs/index.html>
45 45
46 * Calculator: <URL:http://www.cs.cornell.edu/eli/misc/calculator.el> 46 * Calculator: <URL:http://www.barzilay.org/misc/calculator.el>
47 47
48 * CC mode: <URL:http://cc-mode.sourceforge.net/> 48 * CC mode: <URL:http://cc-mode.sourceforge.net/>
49 49
diff --git a/etc/NEWS b/etc/NEWS
index ca64a31c52b..b9090c53e54 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1219,6 +1219,12 @@ fontset appropriately.
1219** Customize changes: 1219** Customize changes:
1220 1220
1221+++ 1221+++
1222*** Custom themes are collections of customize options. Create a
1223custom theme with M-x customize-create-theme. Use M-x load-theme to
1224load and enable a theme, and M-x disable-theme to disable it. Use M-x
1225enable-theme to renable a disabled theme.
1226
1227+++
1222*** The commands M-x customize-face and M-x customize-face-other-window 1228*** The commands M-x customize-face and M-x customize-face-other-window
1223now look at the character after point. If a face or faces are 1229now look at the character after point. If a face or faces are
1224specified for that character, the commands by default customize those 1230specified for that character, the commands by default customize those
@@ -1835,6 +1841,12 @@ boundaries during scrolling.
1835 1841
1836* Changes in Specialized Modes and Packages in Emacs 22.1: 1842* Changes in Specialized Modes and Packages in Emacs 22.1:
1837 1843
1844** The variable `woman-topic-at-point' was renamed
1845to `woman-use-topic-at-point' and behaves differently: if this
1846variable is non-nil, the `woman' command uses the word at point
1847automatically, without asking for a confirmation. Otherwise, the word
1848at point is suggested as default, but not inserted at the prompt.
1849
1838--- 1850---
1839** Changes to cmuscheme 1851** Changes to cmuscheme
1840 1852
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index 8e6fc32121e..03b2820d035 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -907,6 +907,36 @@ distributions, such as Debian, may already have applied such a patch.)
907Note that Emacs has native support for Unicode, roughly equivalent to 907Note that Emacs has native support for Unicode, roughly equivalent to
908Mule-UCS's, so you may not need it. 908Mule-UCS's, so you may not need it.
909 909
910** Mule-UCS compilation problem.
911
912Emacs of old versions and XEmacs byte-compile the form `(progn progn
913...)' the same way as `(progn ...)', but Emacs of version 21.3 and the
914later process that form just as interpreter does, that is, as `progn'
915variable reference. Apply the following patch to Mule-UCS 0.84 to
916make it compiled by the latest Emacs.
917
918--- mucs-ccl.el 2 Sep 2005 00:42:23 -0000 1.1.1.1
919+++ mucs-ccl.el 2 Sep 2005 01:31:51 -0000 1.3
920@@ -639,10 +639,14 @@
921 (mucs-notify-embedment 'mucs-ccl-required name)
922 (setq ccl-pgm-list (cdr ccl-pgm-list)))
923 ; (message "MCCLREGFIN:%S" result)
924- `(progn
925- (setq mucs-ccl-facility-alist
926- (quote ,mucs-ccl-facility-alist))
927- ,@result)))
928+ ;; The only way the function is used in this package is included
929+ ;; in `mucs-package-definition-end-hook' value, where it must
930+ ;; return (possibly empty) *list* of forms. Do this. Do not rely
931+ ;; on byte compiler to remove extra `progn's in `(progn ...)'
932+ ;; form.
933+ `((setq mucs-ccl-facility-alist
934+ (quote ,mucs-ccl-facility-alist))
935+ ,@result)))
936
937 ;;; Add hook for embedding translation informations to a package.
938 (add-hook 'mucs-package-definition-end-hook
939
910** Accented ISO-8859-1 characters are displayed as | or _. 940** Accented ISO-8859-1 characters are displayed as | or _.
911 941
912Try other font set sizes (S-mouse-1). If the problem persists with 942Try other font set sizes (S-mouse-1). If the problem persists with