aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2007-04-29 01:04:39 +0000
committerMiles Bader2007-04-29 01:04:39 +0000
commit570d87805efd12f17bb1322a5e07d82d7884dfdb (patch)
tree40c3cdfa546a2922f8ebfdc7ab6cd90a36842b9e
parent52ce07055e7f304daa5913ea74a762047a56899a (diff)
parentfc26a03e7b8ce1fa6ac665042fedbc74e2ca43df (diff)
downloademacs-570d87805efd12f17bb1322a5e07d82d7884dfdb.tar.gz
emacs-570d87805efd12f17bb1322a5e07d82d7884dfdb.zip
Merge from emacs--rel--22
Patches applied: * emacs--rel--22 (patch 3) - Update from CVS 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca> * lisp/vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem. 2007-04-28 Eli Zaretskii <eliz@gnu.org> * lisp/makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e instead of $(lisp)/mh-e. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-719
-rw-r--r--admin/FOR-RELEASE34
-rw-r--r--etc/ChangeLog7
-rw-r--r--etc/NEWS20
-rw-r--r--lisp/ChangeLog39
-rw-r--r--lisp/vc-hooks.el4
-rw-r--r--man/ChangeLog8
-rw-r--r--man/anti.texi2
7 files changed, 95 insertions, 19 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 384c1d741c4..500b447b692 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -27,7 +27,7 @@ Reminders sent out on 2006-06-08.
27These don't need to be fixed before a release, but we call the 27These don't need to be fixed before a release, but we call the
28attention of Windows users to fixing them. 28attention of Windows users to fixing them.
29 29
30** Drew Adams 12 Aug bug rpt: overlay display artifact: trace left behind 30** Drew Adams 12 Aug bug rpt: overlay display artifact: trace left behind
31Windows only bug. Bug appears only when Cleartype enabled, probably related 31Windows only bug. Bug appears only when Cleartype enabled, probably related
32to the hack introduced on 2005-07-01 to fix some other Cleartype problem. 32to the hack introduced on 2005-07-01 to fix some other Cleartype problem.
33 33
@@ -38,6 +38,38 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem.
38 38
39See the copy of this file on the EMACS_22_BASE branch. 39See the copy of this file on the EMACS_22_BASE branch.
40 40
41** rcyeske@gmail.com, April 22: Failure to build on OpenBSD macppc.
42OpenBSD compilation works on i386.
43http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00932.html
44
45** bojohan+news@dd.chalmers.se, April 23: delete-overlay causes recentering
46(This is now the same as the spurious scrolling bug.)
47http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00514.html
48
49** Spurious redisplay bug not fixed.
50http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00443.html
51http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00732.html
52
53** finish fixing locate.el
54http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-04/msg00437.html
55
56** angeli@caeruleus.net, April 23: Excessive refontification when setting
57 jit-lock-context-unfontify-pos
58http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00993.html
59
60** michael.ewe@arcor.de, Apr 24: 22.0.98 not starting on Solaris 10/I386
61http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg01113.html
62
63** rgm@gnu.org, Apr 24: [Stephen.Berman@gmx.net: Re: redisplay]
64 Gives test case for problem that a dialog box blocks redisplay.
65http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00951.html
66
67** hiroshi.fujishima@gmail.com, Apr 27: emacs-22.0.99 configure problem
68http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg01452.html
69 this is probably an issue for autoconf, rather than Emacs
70
71** C mode fontification took 50 seconds
72http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg01460.html
41 73
42* DOCUMENTATION 74* DOCUMENTATION
43 75
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 3d30d30e6c3..4464e7a9f20 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,10 @@
12007-04-28 Glenn Morris <rgm@gnu.org>
2
3 * emacs.py: Restore file pending consideration of python.el legal
4 status.
5 * NEWS: Restore mention of python.el pending consideration of
6 legal status.
7
12007-04-28 David R. Linn <drl@jekyll.vuse.vanderbilt.edu> 82007-04-28 David R. Linn <drl@jekyll.vuse.vanderbilt.edu>
2 9
3 * PROBLEMS: Add section on Solaris out-of-tree install issues with 10 * PROBLEMS: Add section on Solaris out-of-tree install issues with
diff --git a/etc/NEWS b/etc/NEWS
index 18e39e4c9b2..3cf023df4b9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3483,6 +3483,26 @@ of MATHEMATICAL ITALIC CAPITAL ALPHA (the latter is greater than
3483 3483
3484This syntax works for both character constants and strings. 3484This syntax works for both character constants and strings.
3485 3485
3486*** New syntax: \s now stands for the SPACE character.
3487
3488`?\s' is a new way to write the space character. You must make sure
3489it is not followed by a dash, since `?\s-...' indicates the "super"
3490modifier. However, it would be strange to write a character constant
3491and a following symbol (beginning with `-') with no space between
3492them.
3493
3494`\s' stands for space in strings, too, but it is not really meant for
3495strings; it is easier and nicer just to write a space.
3496
3497*** New syntax: \uXXXX and \UXXXXXXXX specify Unicode code points in hex.
3498
3499For instance, you can use "\u0428" to specify a string consisting of
3500CYRILLIC CAPITAL LETTER SHA, or `"U0001D6E2" to specify one consisting
3501of MATHEMATICAL ITALIC CAPITAL ALPHA (the latter is greater than
3502#xFFFF and thus needs the longer syntax).
3503
3504This syntax works for both character constants and strings.
3505
3486*** The function `expt' handles negative exponents differently. 3506*** The function `expt' handles negative exponents differently.
3487The value for `(expt A B)', if both A and B are integers and B is 3507The value for `(expt A B)', if both A and B are integers and B is
3488negative, is now a float. For example: (expt 2 -2) => 0.25. 3508negative, is now a float. For example: (expt 2 -2) => 0.25.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c69b8a71a55..1e3ecfaa838 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -12,6 +12,15 @@
12 * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so 12 * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
13 don't put stop on toolbar. 13 don't put stop on toolbar.
14 14
152007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16
17 * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
18
192007-04-28 Eli Zaretskii <eliz@gnu.org>
20
21 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
22 instead of $(lisp)/mh-e.
23
152007-04-28 Glenn Morris <rgm@gnu.org> 242007-04-28 Glenn Morris <rgm@gnu.org>
16 25
17 * image-dired.el (image-dired-cmd-create-thumbnail-options) 26 * image-dired.el (image-dired-cmd-create-thumbnail-options)
@@ -20,8 +29,8 @@
20 29
212007-04-27 Chong Yidong <cyd@stupidchicken.com> 302007-04-27 Chong Yidong <cyd@stupidchicken.com>
22 31
23 * textmodes/flyspell.el (flyspell-auto-correct-previous-word): Use 32 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
24 window-start and window-end. 33 Use window-start and window-end.
25 34
262007-04-27 Andreas Schwab <schwab@suse.de> 352007-04-27 Andreas Schwab <schwab@suse.de>
27 36
@@ -55,9 +64,8 @@
55 64
562007-04-25 Mathias Dahl <mathias.dahl@gmail.com> 652007-04-25 Mathias Dahl <mathias.dahl@gmail.com>
57 66
58 * image-dired.el (image-dired-display-image): Derive image-type 67 * image-dired.el (image-dired-display-image): Derive image-type from
59 from filename rather than assuming jpeg, in case no resizing was 68 filename rather than assuming jpeg, in case no resizing was needed.
60 needed.
61 69
622007-04-25 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se> 702007-04-25 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>
63 71
@@ -65,12 +73,11 @@
65 73
662007-04-24 J.D. Smith <jdsmith@as.arizona.edu> 742007-04-24 J.D. Smith <jdsmith@as.arizona.edu>
67 75
68 * progmodes/idlw-shell.el (idlwave-shell-clear-all-bp): Don't 76 * progmodes/idlw-shell.el (idlwave-shell-clear-all-bp):
69 re-query for each cleared BP. 77 Don't re-query for each cleared BP.
70 (idlwave-shell-clear-bp): Optionally skip BP query. 78 (idlwave-shell-clear-bp): Optionally skip BP query.
71 (idlwave-shell-update-bp-overlays): Use set-window-margins 79 (idlwave-shell-update-bp-overlays): Use set-window-margins instead
72 instead of set-window-buffer, which incorrectly moves displayed 80 of set-window-buffer, which incorrectly moves displayed region.
73 region.
74 81
752007-04-23 Jay Belanger <jay.p.belanger@gmail.com> 822007-04-23 Jay Belanger <jay.p.belanger@gmail.com>
76 83
@@ -84,8 +91,8 @@
84 91
852007-04-23 Chong Yidong <cyd@stupidchicken.com> 922007-04-23 Chong Yidong <cyd@stupidchicken.com>
86 93
87 * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down): New 94 * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down):
88 functions. 95 New functions.
89 (Info-mode-line-node-keymap): Bind mouse commands to 96 (Info-mode-line-node-keymap): Bind mouse commands to
90 Info-mouse-scroll-up/down instead of Info-scroll-up/down. 97 Info-mouse-scroll-up/down instead of Info-scroll-up/down.
91 98
@@ -96,8 +103,8 @@
96 (locate-prompt-for-search-string): New function. 103 (locate-prompt-for-search-string): New function.
97 (locate): New optional arg. Make locate-local-prompt 104 (locate): New optional arg. Make locate-local-prompt
98 buffer-local. Use locate-prompt-for-search-string. 105 buffer-local. Use locate-prompt-for-search-string.
99 (locate-with-filter): New optional arg. Use 106 (locate-with-filter): New optional arg.
100 locate-prompt-for-search-string. 107 Use locate-prompt-for-search-string.
101 (locate-update): Bind locate-prompt-for-command. 108 (locate-update): Bind locate-prompt-for-command.
102 109
1032007-04-23 Glenn Morris <rgm@gnu.org> 1102007-04-23 Glenn Morris <rgm@gnu.org>
@@ -180,8 +187,8 @@
180 * progmodes/vhdl-mode.el (vhdl-template-type) 187 * progmodes/vhdl-mode.el (vhdl-template-type)
181 (vhdl-template-record, vhdl-template-nature) 188 (vhdl-template-record, vhdl-template-nature)
182 (vhdl-template-configuration-spec, vhdl-template-component-inst) 189 (vhdl-template-configuration-spec, vhdl-template-component-inst)
183 (vhdl-template-break, vhdl-regress-line, vhdl-electric-tab): Use 190 (vhdl-template-break, vhdl-regress-line, vhdl-electric-tab):
184 delete-region instead of kill-word and kill-line. 191 Use delete-region instead of kill-word and kill-line.
185 192
1862007-04-21 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se> 1932007-04-21 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>
187 194
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el
index df66c817293..d67a0262d88 100644
--- a/lisp/vc-hooks.el
+++ b/lisp/vc-hooks.el
@@ -52,7 +52,9 @@ BACKEND, use `vc-handled-backends'.")
52(defvar vc-header-alist ()) 52(defvar vc-header-alist ())
53(make-obsolete-variable 'vc-header-alist 'vc-BACKEND-header) 53(make-obsolete-variable 'vc-header-alist 'vc-BACKEND-header)
54 54
55(defcustom vc-ignore-dir-regexp "\\`\\([\\/][\\/]\\|/net/\\|/afs/\\)\\'" 55(defcustom vc-ignore-dir-regexp
56 ;; Stop SMB, automounter, AFS, and DFS host lookups.
57 "\\`\\(?:[\\/][\\/]\\|/\\(?:net\\|afs\\|\\.\\\.\\.\\)/\\)\\'"
56 "Regexp matching directory names that are not under VC's control. 58 "Regexp matching directory names that are not under VC's control.
57The default regexp prevents fruitless and time-consuming attempts 59The default regexp prevents fruitless and time-consuming attempts
58to determine the VC status in directories in which filenames are 60to determine the VC status in directories in which filenames are
diff --git a/man/ChangeLog b/man/ChangeLog
index 95de88b0e8f..21b481ad111 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,11 @@
12007-04-28 Glenn Morris <rgm@gnu.org>
2
3 * ack.texi (Acknowledgments):
4 * anti.texi (Antinews):
5 * faq.texi (New in Emacs 22):
6 * programs.texi (Program Modes): Restore mention of python.el pending
7 consideration of legal status.
8
12007-04-28 Richard Stallman <rms@gnu.org> 92007-04-28 Richard Stallman <rms@gnu.org>
2 10
3 * files.texi (File Names): Fixes to ~ description on MS systems. 11 * files.texi (File Names): Fixes to ~ description on MS systems.
diff --git a/man/anti.texi b/man/anti.texi
index beb0e9da027..ebff1c7677f 100644
--- a/man/anti.texi
+++ b/man/anti.texi
@@ -278,7 +278,7 @@ tries to demonstrate this in the GUD buffer.
278@item 278@item
279The Calc, CUA, Ibuffer, Ido, Password, Printing, Reveal, 279The Calc, CUA, Ibuffer, Ido, Password, Printing, Reveal,
280Ruler-mode, SES, Table, Tramp, and URL packages have been removed. 280Ruler-mode, SES, Table, Tramp, and URL packages have been removed.
281The Benchmark, Cfengine, Conf, Dns, Flymake, Pythno, Thumbs, and 281The Benchmark, Cfengine, Conf, Dns, Flymake, Python, Thumbs, and
282Wdired modes have also been removed. 282Wdired modes have also been removed.
283 283
284@item 284@item