aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog.2
diff options
context:
space:
mode:
authorGlenn Morris2015-09-20 06:24:04 -0400
committerGlenn Morris2015-09-20 06:24:04 -0400
commit48ef71e9be040c06d0386ebba1a2a6262634973e (patch)
tree70286b75f92a0146dc5422294ea5d94582bf69a3 /ChangeLog.2
parent00a65e3238a888fc92b0c2aab8cb5bda8bd99c29 (diff)
downloademacs-48ef71e9be040c06d0386ebba1a2a6262634973e.tar.gz
emacs-48ef71e9be040c06d0386ebba1a2a6262634973e.zip
; Auto-commit of ChangeLog files.
Diffstat (limited to 'ChangeLog.2')
-rw-r--r--ChangeLog.2459
1 files changed, 458 insertions, 1 deletions
diff --git a/ChangeLog.2 b/ChangeLog.2
index d9e5aeed459..7557f51ab4e 100644
--- a/ChangeLog.2
+++ b/ChangeLog.2
@@ -1,3 +1,460 @@
12015-09-20 Eli Zaretskii <eliz@gnu.org>
2
3 Improve documentation of 'run-at-time'
4 * lisp/emacs-lisp/timer.el (run-at-time): Improve the doc string.
5 In particular, don't refer to 'diary-entry-time', because it is
6 unavailable until diary-lib is loaded. Also, refer to
7 'timer-duration-words', not 'timer-duration', as the latter's doc
8 string says nothing about the accepted strings.
9
102015-09-19 Jay Belanger <jay.p.belanger@gmail.com>
11
12 * lisp/calc/calc-ext.el (calc-do-prefix-help): Tidy up error message.
13
142015-09-19 Ken Manheimer <ken.manheimer@gmail.com>
15
16 Repair pdbtrack so it follows transition from one remote file to another.
17 * python.el (python-pdbtrack-set-tracked-buffer).
18
192015-09-19 Artur Malabarba <bruce.connor.am@gmail.com>
20
21 * lisp/emacs-lisp/timer.el (run-at-time): Docstring formatting
22
232015-09-19 Eli Zaretskii <eliz@gnu.org>
24
25 Adapt vc-src to the old-new vc-checkin API
26 * lisp/vc/vc-src.el (vc-src-checkin): Accept and ignore an
27 additional optional parameter.
28
292015-09-19 Simen Heggestøyl <simenheg@gmail.com>
30
31 Add overflow module to CSS property list
32 * lisp/textmodes/css-mode.el (css-property-ids): Add properties from CSS
33 Overflow Module Level 3.
34
352015-09-19 Eli Zaretskii <eliz@gnu.org>
36
37 Fix documentation of "C-u C-x v v"
38 * doc/emacs/maintaining.texi (Advanced C-x v v): Make the
39 documentation of "C-u C-x v v" match what the code does.
40
41 Resurrect the ability to specify a revision in vc-next-action
42 * lisp/vc/vc-bzr.el (vc-bzr-checkin):
43 * lisp/vc/vc-dav.el (vc-dav-checkin):
44 * lisp/vc/vc-git.el (vc-git-checkin):
45 * lisp/vc/vc-hg.el (vc-hg-checkin):
46 * lisp/vc/vc-mtn.el (vc-mtn-checkin): Accept and silently ignore
47 an additional optional argument, the revision to checkin.
48 * lisp/vc/vc-sccs.el (vc-sccs-checkin):
49 * lisp/vc/vc-cvs.el (vc-cvs-checkin):
50 * lisp/vc/vc-rcs.el (vc-rcs-checkin): Allow to optionally specify
51 a revision to checkin.
52 * lisp/vc/vc.el (vc-next-action): Allow to optionally specify the
53 revision when checking in files.
54 See http://lists.gnu.org/archive/html/emacs-devel/2015-09/msg00688.html
55 for the details.
56
572015-09-18 Wilson Snyder <wsnyder@wsnyder.org>
58
59 Fix checkdoc warnings.
60 * lisp/progmodes/verilog-mode.el (verilog-forward-sexp-function)
61 (verilog-decls-princ) (verilog-modport-princ)
62 (verilog-modi-modport-lookup-one): Fix checkdoc warnings.
63
64 /svaha/wsnyder/d/log
65
662015-09-17 Jay Belanger <jay.p.belanger@gmail.com>
67
68 Fix the routine for help on Calc's prefixes.
69 * lisp/calc/calc-ext.el (calc-prefix-help-retry): New variable.
70 (calc-do-prefix-help): Use `read-char' to determine the next Calc
71 command.
72
732015-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
74
75 * lisp/font-lock.el (font-lock-beginning-of-syntax-function): Remove
76 (font-lock-fontify-block): Don't let-bind it.
77 (font-lock-compile-keywords): Don't use it.
78 (font-lock-set-defaults): Don't set it. Allow the variable alist to
79 start one slot earlier, instead.
80 * lisp/emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
81 Don't declare.
82 (syntax-ppss): Don't use it either.
83 * lisp/font-core.el (font-lock-defaults): Remove SYNTAX-BEGIN
84 from docstring.
85 * doc/emacs/display.texi (Font Lock): Don't mention
86 font-lock-beginning-of-syntax-function.
87 * doc/lispref/modes.texi (Font Lock Basics): Update description of
88 font-lock-defaults.
89 (Syntactic Font Lock): Remove font-lock-beginning-of-syntax-function.
90 * lisp/loadhist.el (unload-feature-special-hooks):
91 Remove font-lock-beginning-of-syntax-function.
92 * lisp/obsolete/lazy-lock.el (lazy-lock-fontify-region):
93 * lisp/emacs-lisp/lisp.el (beginning-of-defun-raw): Don't let-bind
94 font-lock-beginning-of-syntax-function.
95
962015-09-17 Paul Eggert <eggert@cs.ucla.edu>
97
98 Backslash cleanup in Elisp source files
99 This patch should not change behavior. It typically omits backslashes
100 where they are redundant (e.g., in the string literal "^\$").
101 In a few places, insert backslashes where they make regular
102 expressions clearer: e.g., replace "^\*" (equivalent to "^*") with
103 "^\\*", which has the same effect as a regular expression.
104 Also, use ‘\ %’ instead of ‘\%’ when avoiding confusion with SCCS IDs,
105 and similarly use ‘\ $’ instead of ‘\$’ when avoiding confusion with
106 RCS IDs, as that makes it clearer that the backslash is intended.
107
108 Some more minor backslash fixes
109 * test/automated/compile-tests.el (compile-tests--test-regexps-data):
110 * test/automated/info-xref.el (info-xref-test-write-file):
111 Double backslashes in strings.
112
113 Fix several backslash typos in Elisp strings
114 * lisp/calendar/todo-mode.el (todo-files, todo-rename-file)
115 (todo-find-filtered-items-file, todo-reset-nondiary-marker)
116 (todo-reset-done-string, todo-reset-comment-string)
117 (todo-reset-highlight-item):
118 * lisp/erc/erc-networks.el (erc-networks-alist):
119 * lisp/gnus/gnus-art.el (gnus-button-handle-library):
120 * lisp/gnus/gnus-group.el (gnus-read-ephemeral-gmane-group-url):
121 * lisp/gnus/nntp.el (nntp-via-shell-prompt)
122 (nntp-telnet-shell-prompt):
123 * lisp/gnus/spam-report.el (spam-report-gmane-regex):
124 * lisp/image-dired.el (image-dired-rotate-original):
125 (image-dired-get-exif-file-name):
126 * lisp/international/latin1-disp.el (latin1-display-ucs-per-lynx):
127 * lisp/mail/undigest.el (rmail-digest-parse-rfc1153strict):
128 * lisp/mh-e/mh-letter.el (mh-file-is-vcard-p):
129 * lisp/mh-e/mh-mime.el (mh-file-mime-type-substitutions):
130 * lisp/net/shr-color.el (shr-color->hexadecimal):
131 * lisp/org/org-bibtex.el (org-bibtex-fields):
132 * lisp/org/org-docview.el (org-docview-export):
133 * lisp/org/org-entities.el (org-entities):
134 * lisp/org/ox-icalendar.el (org-icalendar-cleanup-string):
135 * lisp/progmodes/cperl-mode.el (cperl-indent-exp):
136 * lisp/progmodes/ebnf2ps.el (ebnf-file-suffix-regexp)
137 (ebnf-style-database):
138 * lisp/progmodes/idlw-help.el (idlwave-do-context-help1):
139 * lisp/progmodes/ruby-mode.el (ruby-imenu-create-index-in-block):
140 * lisp/progmodes/sql.el (sql-product-alist):
141 * lisp/progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist)
142 (verilog-error-font-lock-keywords)
143 (verilog-assignment-operator-re):
144 * lisp/progmodes/vhdl-mode.el (vhdl-compiler-alist):
145 * lisp/textmodes/reftex-parse.el (reftex-parse-from-file):
146 * lisp/vc/add-log.el (change-log-version-number-regexp-list):
147 Fix typo by replacing ‘\’ with ‘\\’ in a string literal.
148 For example, to get the regular expression ‘\.’ use the string
149 literal "\\.", not "\." (which is equivalent to ".").
150 * lisp/emulation/viper-util.el (viper-glob-unix-files):
151 Remove stray ‘\j’ from string.
152 * lisp/gnus/nntp.el (nntp-via-shell-prompt)
153 (nntp-telnet-shell-prompt):
154 Treat > like $ when matching a shell prompt.
155 * lisp/progmodes/make-mode.el (makefile-browse):
156 Properly quote a diagnostic.
157
158 Fix minor quoting problems in diagnostics
159 * lisp/tutorial.el (tutorial--describe-nonstandard-key):
160 * lisp/vc/ediff-ptch.el (ediff-fixup-patch-map):
161 Follow text-quoting-style in diagnostic, and quote a file name.
162
1632015-09-17 Eli Zaretskii <eliz@gnu.org>
164
165 * doc/lispref/frames.texi (Cursor Parameters): Document 'x-stretch-cursor'.
166
1672015-09-16 Paul Eggert <eggert@cs.ucla.edu>
168
169 Omit unnecessary \ before paren in C docstrings
170 Although \( is needed in docstrings in Elisp code, it is not needed in
171 docstrings in C code, since C function definitiions do not start with
172 a parenthesis. The backslashes made the docstrings a bit harder to
173 read and to format in columns. Also, some C docstrings had ( in
174 column 1 and this did not appear to be causing any problems. So,
175 simplify C docstrings by replacing \( with ( and \) with ).
176
177 A few more minor quoting fixes in a script and a text file
178
179 Minor quoting fixes in scripts and doc
180 Prefer straight quotes in random script files, as they are not converted.
181 Prefer grave quotes in a couple of places in the manual that were missed
182 earlier, as these quotes are converted.
183
184 Minor backslash fixes in manuals and scripts
185 * Makefile.in (install-arch-indep):
186 * admin/charsets/compact.awk:
187 * admin/charsets/gb180302.awk (gb_to_index):
188 * admin/charsets/gb180304.awk (gb_to_index):
189 Avoid undefined behavior in Awk regular expression backslashes.
190 * doc/misc/efaq.texi (Matching parentheses):
191 Omit unnecessary backslashes.
192 * doc/misc/gnus-faq.texi (FAQ 5-8):
193 Avoid undefined behavior in suggested sed backslash usage.
194
195 Add -Wswitch to --enable-gcc-warnings
196 Make --enable-gcc-warnings a bit pickier, by also using -Wswitch.
197 * configure.ac (WERROR_CFLAGS): Don’t add -Wno-switch.
198 * lib-src/etags.c (main, consider_token, C_entries):
199 * src/coding.c (encode_invocation_designation):
200 * src/data.c (Ftype_of):
201 * src/eval.c (Fdefvaralias, default_toplevel_binding)
202 (Fbacktrace__locals, mark_specpdl):
203 * src/lisp.h (record_xmalloc):
204 * src/syntax.c (scan_lists, scan_sexps_forward):
205 * src/window.c (window_relative_x_coord):
206 * src/xdisp.c (push_it, pop_it):
207 * src/xterm.c (xg_scroll_callback, x_check_fullscreen):
208 Error out or do nothing (as appropriate) if a switch statement
209 with an enum value does not cover all of the enum.
210 * src/dispextern.h (struct iterator_stack_entry.u.comp):
211 Remove unused member discovered by using -Wswitch.
212 * src/lisp.h (record_xmalloc): Add a ‘+ 0’ to pacify -Wswitch.
213 * src/vm-limit.c (check_memory_limits):
214 Simplify warning-diagnostic computation by using a table.
215
216 etags ‘fatal’ function is now printf-like
217 * lib-src/etags.c (fatal): Now printf-like. All callers changed.
218 Also, now static; not clear why it needed to be extern.
219 (verror): New function, with most of the old contents of ‘error’.
220 (fatal, error): Use it.
221
2222015-09-16 Eli Zaretskii <eliz@gnu.org>
223
224 More adaptations in file-notify-tests.el
225 * test/automated/file-notify-tests.el
226 (file-notify-test05-dir-validity): Skip for w32notify in
227 batch-mode. (Bug#21432)
228
2292015-09-16 Michael Albinus <michael.albinus@gmx.de>
230
231 Adapt test in file-notify-tests.el
232 * test/automated/file-notify-tests.el
233 (file-notify-test04-file-validity): Skip for w32notify in
234 batch-mode. Add test lost last commit.
235
2362015-09-16 Dima Kogan <dima@secretsauce.net>
237
238 winner no longer holds on to dead frames
239 * lisp/winner.el (winner-change-fun): Cull dead frames.
240 This prevents a potentially massive memory leak. See:
241 http://lists.gnu.org/archive/html/emacs-devel/2015-09/msg00619.html
242
2432015-09-16 Michael Albinus <michael.albinus@gmx.de>
244
245 Use common report_file_notify_error function
246 * src/fileio.c (report_file_notify_error): New function.
247 * src/inotify.c (report_inotify_error): Remove function.
248 (inotify_callback, symbol_to_inotifymask, Finotify_add_watch)
249 (Finotify_rm_watch): Use report_file_notify_error.
250 * src/lisp.h (report_file_notify_error): Declare external function.
251 * src/w32notify.c (report_w32notify_error): Remove function.
252 (Fw32notify_add_watch, Fw32notify_rm_watch):
253 Use report_file_notify_error.
254
2552015-09-16 Jay Belanger <jay.p.belanger@gmail.com>
256
257 Fix documentation.
258 * doc/misc/calc.texi (Single-Variable Statistics): Fix the wording of
259 the documentation of the root mean square.
260
2612015-09-16 Martin Rudalics <rudalics@gmx.at>
262
263 Remove tool_bar_redisplayed_once and associated code.
264 * src/frame.h (tool_bar_redisplayed_once): Remove slot.
265 * src/frame.c (make_frame, x_set_font): Remove initialization of
266 f->tool_bar_redisplayed_once.
267 * src/w32fns.c (x_change_tool_bar_height):
268 * src/xfns.c (x_change_tool_bar_height): Don't check for
269 f->tool_bar_redisplayed_once.
270 * src/xdisp.c (redisplay_internal): Remove handling of
271 f->tool_bar_redisplayed_once.
272
2732015-09-16 Eli Zaretskii <eliz@gnu.org>
274
275 Restore some of the quoting in the manuals
276 * doc/lispref/windows.texi (Coordinates and Windows)
277 (Coordinates and Windows):
278 * doc/lispref/variables.texi (Lexical Binding)
279 (File Local Variables):
280 * doc/lispref/text.texi (Format Properties):
281 * doc/lispref/symbols.texi (Symbol Components):
282 * doc/lispref/strings.texi (Creating Strings):
283 * doc/lispref/sequences.texi (Sequence Functions):
284 * doc/lispref/searching.texi (Regexp Special, Regexp Search)
285 (Search and Replace):
286 * doc/lispref/processes.texi (Bindat Spec):
287 * doc/lispref/os.texi (Idle Timers):
288 * doc/lispref/objects.texi (Basic Char Syntax):
289 * doc/lispref/numbers.texi (Float Basics, Random Numbers):
290 * doc/lispref/nonascii.texi (Character Properties):
291 * doc/lispref/modes.texi (Major Mode Conventions, Mode Hooks)
292 (Mode Line Variables):
293 * doc/lispref/minibuf.texi (Text from Minibuffer):
294 * doc/lispref/loading.texi (Autoload):
295 * doc/lispref/keymaps.texi (Controlling Active Maps):
296 * doc/lispref/frames.texi (Frame Layout, Size and Position)
297 (Size Parameters, Implied Frame Resizing):
298 * doc/lispref/files.texi (Changing Files, Magic File Names):
299 * doc/lispref/eval.texi (Self-Evaluating Forms):
300 * doc/lispref/display.texi (Progress, Abstract Display)
301 (Abstract Display Example, Bidirectional Display):
302 * doc/lispref/commands.texi (Event Mod):
303 * doc/emacs/windows.texi (Displaying Buffers):
304 * doc/emacs/trouble.texi (Bug Criteria, Checklist):
305 * doc/emacs/text.texi (Enriched Text):
306 * doc/emacs/programs.texi (MixedCase Words):
307 * doc/emacs/picture-xtra.texi (Insert in Picture)
308 (Tabs in Picture):
309 * doc/emacs/misc.texi (Emacs Server, Printing):
310 * doc/emacs/mini.texi (Minibuffer History):
311 * doc/emacs/maintaining.texi (Old Revisions, VC Change Log)
312 (Pulling / Pushing):
313 * doc/emacs/killing.texi (Yanking, Cut and Paste, Clipboard):
314 * doc/emacs/help.texi (Help, Help Echo):
315 * doc/emacs/glossary.texi (Glossary):
316 * doc/emacs/frames.texi (Mouse Commands, Creating Frames)
317 (Frame Commands):
318 * doc/emacs/files.texi (Reverting, Saving, Directories):
319 * doc/emacs/entering.texi (Exiting):
320 * doc/emacs/emacs.texi (Top):
321 * doc/emacs/cmdargs.texi (Window Size X, Icons X):
322 * doc/emacs/anti.texi (Antinews): Restore quoting of text where
323 appropriate or replace quoting with @dfn.
324 * doc/misc/ediff.texi (Window and Frame Configuration):
325 * doc/lispref/processes.texi (Network Feature Testing):
326 * doc/lispref/display.texi (Display Margins): Quote the phrase
327 after "a.k.a." where appropriate.
328
3292015-09-16 Tassilo Horn <tsdh@gnu.org>
330
331 Clarify reftex-extra-bindings docs.
332 * lisp/textmodes/reftex-vars.el (reftex-extra-bindings): Document that
333 the variable only has an effect at load-time.
334 * doc/misc/reftex.texi (Key Bindings): Ditto.
335
3362015-09-16 Daniel McClanahan <danieldmcclanahan@gmail.com> (tiny change)
337
338 Fix search argument in ‘lisp--el-match-keyword’ (Bug#21492) (Bug#21493)
339 * lisp/emacs-lisp/lisp-mode.el (lisp--el-match-keyword): Fix
340 search argument. (Bug#21492) (Bug#21493)
341
3422015-09-16 Tassilo Horn <tsdh@gnu.org>
343
344 Add pretty symbols for \qquad and \varrho.
345 * lisp/textmodes/tex-mode.el (tex--prettify-symbols-alist): Add pretty
346 symbols for \qquad and \varrho.
347
3482015-09-15 Jay Belanger <jay.p.belanger@gmail.com>
349
350 Add new functions for the root mean square of a (Calc) vector
351 * lisp/calc/calc-stats.el (calcFunc-rms, calc-vector-rms):
352 New functions.
353 * lisp/calc/calc-ext.el (calc-init-extensions): Add keybinding for
354 `calc-vector-rms', add autoloads for `calc-vector-rms' and
355 `calcFunc-rms'.
356 * lisp/calc/calc-map.el (calc-u-oper-keys): Add entry for
357 `calcFunc-rms'.
358 * lisp/calc/calc-menu.el (calc-vectors-menu): Add entry for
359 `calc-vector-rms'.
360 * doc/misc/calc.texi (Single-Variable Statistics): Document the rms
361 command.
362
3632015-09-15 Stephen Leake <stephen_leake@stephe-leake.org>
364
365 Add monotone EDE generic project
366 * lisp/cedet/ede/generic.el (ede-enable-generic-projects): Add monotone
367 generic project.
368
369 Revert premature commit
370 * doc/lispref/files.texi: Revert premature commit of change to
371 file-name-all-completions.
372
373 Fix a bug in elisp--xref-find-definitions related to cl-generic defaults
374 * lisp/progmodes/elisp-mode.el (elisp--xref-find-definitions): Fix bug
375 with cl-generic defaults.
376 (elisp--xref-find-references): Add doc string.
377 * test/automated/elisp-mode-tests.el (xref-elisp-generic-*): Improve
378 tests to find bug.
379
380 Fix bugs in eieio-oref-default related to class symbols
381 * lisp/emacs-lisp/eieio-core.el (class-p): Handle symbol properly.
382 (eieio-oref-default): Handle class properly.
383
3842015-09-15 Paul Eggert <eggert@cs.ucla.edu>
385
386 Quote “fullboth” when defining it
387 * doc/lispref/frames.texi (Size Parameters): Use @dfn for “fullboth”
388 and rewrite the containing paragraph, which was awkward. (Bug#21472).
389
3902015-09-15 Eli Zaretskii <eliz@gnu.org>
391
392 Minor doc fix in emacs/ack.texi
393 * doc/emacs/ack.texi (Acknowledgments): Fix an xref missing the
394 first argument.
395
3962015-09-15 Michael Albinus <michael.albinus@gmx.de>
397
398 Adapt tests in auto-revert-tests.el
399 * test/automated/auto-revert-tests.el (auto-revert--timeout):
400 Make it a defconst.
401 (auto-revert--wait-for-revert): New defun.
402 (auto-revert-test00-auto-revert-mode)
403 (auto-revert-test01-auto-revert-tail-mode)
404 (auto-revert-test02-auto-revert-mode-dired): Use it.
405
4062015-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
407
408 * lisp/emacs-lisp/lisp-mode.el (lisp-mode-symbol-regexp): New const
409 Use it everywhere "\\(\\sw\\|\\s_\\|\\\\.\\)+" was used.
410 (cl-lib-fdefs): Add defgeneric.
411 (cl-kw): Add all elements of eieio-kw and cl-lib-kw.
412 (eieio-kw, cl-lib-kw, el-kw): Remove.
413
4142015-09-15 Paul Eggert <eggert@cs.ucla.edu>
415
416 Quote less in manuals
417 The manuals often used quotes ``...'' when it is better to use @dfn or
418 @code or capitalized words or no quoting at all. For example, there is
419 no need for the `` and '' in “if a variable has one effect for
420 @code{nil} values and another effect for ``non-@code{nil}'' values”.
421 Reword the Emacs, Lisp intro, and Lisp reference manuals to eliminate
422 unnecessary quoting like this, and to use @dfn etc. instead when called
423 for (Bug#21472).
424
4252015-09-15 Mark Oteiza <mvoteiza@udel.edu>
426
427 lisp/custom.el (load-theme): Only compute hash when needed
428
4292015-09-15 Paul Eggert <eggert@cs.ucla.edu>
430
431 Pacify --enable-gcc-warnings
432 * src/inotify.c (report_inotify_error): Declare it _Noreturn.
433
4342015-09-15 Michael Albinus <michael.albinus@gmx.de>
435
436 Improve error reports in inotify.c
437 * src/inotify.c (report_inotify_error): New function. Clone of
438 report_w32notify_error.
439 (inotify_callback, symbol_to_inotifymask, Finotify_add_watch)
440 (Finotify_rm_watch): Use it.
441
4422015-09-15 Eli Zaretskii <eliz@gnu.org>
443
444 Fix the file-notify tests for watch validation on w32
445 * test/automated/file-notify-tests.el
446 (file-notify-test04-file-validity): Move the directory deletion
447 out of the file-notify--test-with-events macro.
448 (file-notify-test04-file-validity)
449 (file-notify-test05-dir-validity): Enlarge the timeout of
450 read-event to 0.5, as 0.1 is borderline on w32. (Bug#21432)
451
4522015-09-15 Tassilo Horn <tsdh@gnu.org>
453
454 Use OPEN BOX instead of space for \quad.
455 * lisp/textmodes/tex-mode.el (tex--prettify-symbols-alist): Use OPEN BOX
456 character for \quad instead of a space.
457
12015-09-15 Eli Zaretskii <eliz@gnu.org> 4582015-09-15 Eli Zaretskii <eliz@gnu.org>
2 459
3 Add missing *.pbm images 460 Add missing *.pbm images
@@ -12989,7 +13446,7 @@
12989 13446
12990This file records repository revisions from 13447This file records repository revisions from
12991commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to 13448commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to
12992commit 20b4625117b0303eaba1ef81085f0feb9062695a (inclusive). 13449commit 00a65e3238a888fc92b0c2aab8cb5bda8bd99c29 (inclusive).
12993See ChangeLog.1 for earlier changes. 13450See ChangeLog.1 for earlier changes.
12994 13451
12995;; Local Variables: 13452;; Local Variables: