aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorKaroly Lorentey2004-10-31 02:05:24 +0000
committerKaroly Lorentey2004-10-31 02:05:24 +0000
commite0bc17abe6979d607e8de4684dddb96e53c60065 (patch)
treeb7cb7bc5df9f12138937fd958cdf4b9c2d19ee3a /etc
parentf158167a84475d5fc41931531406821e6413afd7 (diff)
parent707994d2626cf0f01c3ece4028d73835068d64dc (diff)
downloademacs-e0bc17abe6979d607e8de4684dddb96e53c60065.tar.gz
emacs-e0bc17abe6979d607e8de4684dddb96e53c60065.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-639 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-640 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-641 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-642 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-643 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-644 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-645 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-646 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-647 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-648 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-649 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-650 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-651 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-652 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-59 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-60 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-61 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-62 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-63 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-263
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS20
-rw-r--r--etc/compilation.txt21
2 files changed, 38 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 7816a896a7a..27e3d815f3c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -99,6 +99,12 @@ types any more. Add -DUSE_LISP_UNION_TYPE if you want union types.
99* Changes in Emacs 21.4 99* Changes in Emacs 21.4
100 100
101+++ 101+++
102** `set-auto-mode' now gives the interpreter magic line (if present)
103precedence over the file name. Likewise an <?xml or <!DOCTYPE declaration
104will give the buffer XML or SGML mode, unless the file name leads to a mode in
105`xml-based-modes'.
106
107+++
102** New function `looking-back' checks whether a regular expression matches 108** New function `looking-back' checks whether a regular expression matches
103the text before point. Specifying the LIMIT argument bounds how far 109the text before point. Specifying the LIMIT argument bounds how far
104back the match can start; this is a way to keep it from taking too long. 110back the match can start; this is a way to keep it from taking too long.
@@ -864,6 +870,9 @@ coding system now also encodes characters from most of Emacs's
864one-dimensional internal charsets, specifically the ISO-8859 ones. 870one-dimensional internal charsets, specifically the ISO-8859 ones.
865The utf-16 coding system is affected similarly. 871The utf-16 coding system is affected similarly.
866 872
873** New variable `utf-translate-cjk-unicode-range' controls which
874Unicode characters to translate in `utf-translate-cjk-mode'.
875
867** iso-10646-1 (`Unicode') fonts can be used to display any range of 876** iso-10646-1 (`Unicode') fonts can be used to display any range of
868characters encodable by the utf-8 coding system. Just specify the 877characters encodable by the utf-8 coding system. Just specify the
869fontset appropriately. 878fontset appropriately.
@@ -2289,6 +2298,11 @@ configuration files.
2289 2298
2290* Lisp Changes in Emacs 21.4 2299* Lisp Changes in Emacs 21.4
2291 2300
2301+++
2302** An interactive specification may now use the code letter 'U' to get
2303the up-event that was discarded in case the last key sequence read for a
2304previous 'k' or 'K' argument was a down-event; otherwise nil is used.
2305
2292** Function `translate-region' accepts also a char-table as TABLE 2306** Function `translate-region' accepts also a char-table as TABLE
2293argument. 2307argument.
2294 2308
@@ -3092,11 +3106,13 @@ KEEP-MARGINS which will preserve the window's current margin, fringe,
3092and scroll-bar settings if non-nil. 3106and scroll-bar settings if non-nil.
3093 3107
3094+++ 3108+++
3095** Renamed file hooks to follow the convention: 3109** Renamed hooks to better follow the naming convention:
3096find-file-hooks to find-file-hook, 3110find-file-hooks to find-file-hook,
3097find-file-not-found-hooks to find-file-not-found-functions, 3111find-file-not-found-hooks to find-file-not-found-functions,
3098write-file-hooks to write-file-functions, 3112write-file-hooks to write-file-functions,
3099write-contents-hooks to write-contents-functions. 3113write-contents-hooks to write-contents-functions,
3114x-lost-selection-hooks to x-lost-selection-functions,
3115x-sent-selection-hooks to x-sent-selection-functions.
3100Marked local-write-file-hooks as obsolete (use the LOCAL arg of `add-hook'). 3116Marked local-write-file-hooks as obsolete (use the LOCAL arg of `add-hook').
3101 3117
3102+++ 3118+++
diff --git a/etc/compilation.txt b/etc/compilation.txt
index ff86583299d..bae217e8323 100644
--- a/etc/compilation.txt
+++ b/etc/compilation.txt
@@ -108,6 +108,24 @@ symbol: epc
108Error 24 at (2:progran.f90) : syntax error 108Error 24 at (2:progran.f90) : syntax error
109 109
110 110
111* Fortran checker
112
113symbols: ftnchek-file ftnchek-line-file ftnchek-line
114
115File average.f:
116
117Warning in module COMPAV: Variables may be used before set:
118 SUM used at line 14
119 SUM set at line 14
120
121Warning near line 16 col 20: integer quotient expr I/J converted to real
122
123 Dummy arg W in module SUBA line 8 file arrayclash.f is array
124 L4 used at line 55 file test/assign.f; never set
125Warning near line 10 file arrayclash.f: Module contains no executable
126Nonportable usage near line 31 col 9 file assign.f: mixed default and explicit
127
128
111* IAR Systems C Compiler 129* IAR Systems C Compiler
112 130
113symbol: iar 131symbol: iar
@@ -125,7 +143,7 @@ foo.c(3:8) : warning EDC0833: Implicit return statement encountered.
125foo.c(5:5) : error EDC0350: Syntax error. 143foo.c(5:5) : error EDC0350: Syntax error.
126 144
127 145
128* Ultrix MIPS RISC CC & DEC AXP OSF/1 cc & IRIX 5.2 146* Ultrix MIPS RISC CC, DEC AXP OSF/1 cc, IRIX 5.2 & NAG Fortran
129 147
130symbol: irix 148symbol: irix
131 149
@@ -136,6 +154,7 @@ cfe: Warning 712: foo.c, line 2: illegal combination of pointer and ...
136cfe: Warning 600: xfe.c: 170: Not in a conditional directive while ... 154cfe: Warning 600: xfe.c: 170: Not in a conditional directive while ...
137/usr/lib/cmplrs/cc/cfe: Error: foo.c: 1: blah blah 155/usr/lib/cmplrs/cc/cfe: Error: foo.c: 1: blah blah
138/usr/lib/cmplrs/cc/cfe: warning: foo.c: 1: blah blah 156/usr/lib/cmplrs/cc/cfe: warning: foo.c: 1: blah blah
157foo bar: baz.f, line 27: ...
139 158
140 159
141* Java Exception & Valgrind (memory debugger for x86 GNU/Linux) 160* Java Exception & Valgrind (memory debugger for x86 GNU/Linux)