Mercurial > emacs
annotate admin/FOR-RELEASE @ 103616:af77bf73dfe0
* verilog-mode.el (verilog-beg-of-statement)
(verilog-endcomment-reason-re): Support unique case and priority
case.
(verilog-basic-complete-re): Support localparam lineup.
(verilog-beg-of-statement-1): Fix for robustness, unique case.
(verilog-set-auto-endcomments): Fix for unique case, always_comb
commenting.
(verilog-leap-to-case-head): Now support *nested* unique &
priority case statements.
(verilog-auto-lineup): Make just declarations the default (as it
had been).
(verilog-leap-to-case-head): Support priority/unique case
statements.
(verilog-auto-lineup): Rework to give users radio buttons to
select the various styles of automatic lineup
(verilog-error-regexp-alist): Rework to support the XEmacs style
of error regular expressions from compilers, lint tools &
simulators. Note that GNU Emacs has made it impossible for a mode
to load such things.
(electric-verilog-terminate-line, verilog-indent-declaration)
(verilog-auto-wiure): Rework for radio button selection of
auto-lineup selection of specification of auto lineup.
(verilog-beg-of-statement-1): Redesign to support proper operation
in additional code, based on testing with auto-lineup.
(verilog-calculate-indent, assignments & declarations)
(verilog-backward-token): Enhance to support auto-lineup of
assignments & declarations.
(verilog-in-directive-p, verilog-at-struct-p): New function for
easy test of whether we are.
(verilog-pretty-declarations, verilog-pretty-expr): Massive rework
to support safe execution at almost anyline.
(verilog-calc-1): Properly support indenting deep inside generate
blocks.
(verilog-init-font) Remove definition & use of verilog-init-font,
as it is redundant with font-lock-defaults.
(verilog-mode): Alter the definition of verilog-font-lock-defualts
to avoid circular calls if syntax-ppss is a function (as is the
case now in 22.x GNU Emacs) as that function would sometimes call
itself, leading to (nearly) infinite recursion
(verilog-ovm-begin-re, verilog-ovm-end-re)
(verilog-ovm-statement-re, verilog-leap-to-head)
(verilog-backward-token): Add support for OVM macros. Some are
complete statements, and others open and close scopes like begin
and end.
(verilog-defun-level-not-generate-re, verilog-defun-level-re)
(verilog-defun-level-generate-only-re): Really fix the defun-list
compilation issue
(verilog-calc-1) (verilog-beg-of-statement): Enhance support for
coverpoint, constraint and cross statements
(verilog-defun-level-list, verilog-generate-defun-level-list)
(verilog-all-defun-level-list): Redo these specifications - it is
too hard to support eval-when compile aggregation of lists also
built at when-compile time.
(verilog-defun-level-list): Place defconsts of variables used in
building regular expressions which are built in eval-when-compile
bodies in the same eval-when-compile body to facilitate compile
without load.
(verilog-beg-block-re-ordered): Support indenting
virtual/protected tasks and functions.
(verilog-defun-level-list,verilog-in-generate-region-p)
(verilog-backward-ws&directives, verilog-calc-1): Speed up
indentation of some module items (generate items).
(verilog-forward-sexp, verilog-leap-to-head): Support stepping
across virtual/protected tasks and functions.
* verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort): Allow
sorting AUTOARG lists. Suggested by Andrea Fedeli.
(verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
in concatenations. Reported by Yishay Belkind.
(verilog-auto-ascii-enum): Support one-hot state machines in
AUTOASCIIENUM. Suggested by Lloyd Gomez.
(verilog-auto-inst, verilog-auto-inst-port): Include interface
modport in AUTOINST and add vl-modport for users. Reported by
David Rogoff.
(verilog-auto-inout-module, verilog-auto-inst)
(verilog-decls-get-interfaces, verilog-insert-definition)
(verilog-insert-one-definition, verilog-read-decls)
(verilog-read-sub-decls, verilog-read-sub-decls-sig)
(verilog-sig-modport, verilog-signals-combine-bus)
(verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
Suggested by David Rogoff.
(verilog-repair-open-comma): Fix non-insertion of comma when
`DEFINE occurs in V2K argument list. Reported by Lane Brooks.
(verilog-make-width-expression): Simplify [A-1:0] expression
widths to just {A{1'b0}}.
(verilog-mode): Cleanup checkdoc warnings.
(verilog-auto-inout-module, verilog-signals-matching-dir-re): Add
third optional regexp to AUTOINOUTMODULE to allow selecting only
inputs/outputs or data type. Suggested by Vasu Kandadi.
(next-error-last-buffer): Fix byte-compiler warning.
(verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
(verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
or shell command text during AUTO expansion. Suggested by Tad
Truex.
(verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
(verilog-read-sub-decls-sig, verilog-symbol-detick-text): Fix
dotted nets {a.b,c.d} and excaped identifiers being mis-included
in AUTOINOUT. Reported by Matthew Lovell.
(verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
causing use of <= assignments. Reported by Alex Reed.
(verilog-read-decls): Fix triand, trior, wand, wor to be
recognized by AUTOWIRE. Reported by Spencer Isaacson.
(verilog-extended-complete-re): Support import "DPI-C" functions.
(verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
y[a+1:a+1]" to not include a in reset list. Reported by Dan
Dever.
(verilog-insert-date, verilog-insert-year)
(verilog-sk-header-tmpl): Fix verilog-header inserting error on
Windows systems. Reported by Michael Potts.
(verilog-read-module-name): Fix AUTOINST when the child module
declaration's name is a tick define. Reported by Elliot Mednick.
(verilog-read-decls): Fix V2K parameter bit subscripts getting
passed to next parameter's definition. Reported by Bruce T.
(verilog-read-decls): Fix detecting "parameter int" when using
AUTOINSTPARAM. Reported by Bruce T.
(verilog-goto-defun): Fix goto not finding modules unless first
perform a verilog-auto expansion. Suggested by Lawrence Butcher.
(verilog-mode): Expand -f flag arguments on entry to mode so
verilog-goto-defun will work. Reported by Lawrence Butcher.
(verilog-getopt): Expand environment variables in -f file
arguments. Suggested by Lawrence Butcher.
(verilog-set-define): Fix "Symbol's value as variable is void"
when reading enumerations.
(verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
Suggested by Stephen Peltan.
(verilog-read-defines): Fix reading of enumerations in include
files. Reported by Steve Peltan.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sun, 28 Jun 2009 17:52:45 +0000 |
parents | fa1ab11bd24f |
children | 39e38bc3d6d0 |
rev | line source |
---|---|
56253
5eca32ea0d37
Moved FOR-RELEASE from etc/ to admin/.
Eli Zaretskii <eliz@gnu.org>
parents:
diff
changeset
|
1 Tasks needed before the next release. |
5eca32ea0d37
Moved FOR-RELEASE from etc/ to admin/.
Eli Zaretskii <eliz@gnu.org>
parents:
diff
changeset
|
2 |
61193
4a6c38cb9e23
*** empty log message ***
Luc Teirlinck <teirllm@auburn.edu>
parents:
61171
diff
changeset
|
3 * TO BE DONE SHORTLY BEFORE RELEASE |
61063
4b6f377ee225
*** empty log message ***
Luc Teirlinck <teirllm@auburn.edu>
parents:
60716
diff
changeset
|
4 |
63591
e477f7119e3c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
63585
diff
changeset
|
5 ** Check for widow and orphan lines in manuals; |
e477f7119e3c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
63585
diff
changeset
|
6 make sure all the pages really look ok in the manual as formatted. |
e477f7119e3c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
63585
diff
changeset
|
7 |
85055 | 8 ** Regenerate the pdf versions of the reference cards in etc/refcards/. |
76194 | 9 |
64145
a8e381cff97f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
64137
diff
changeset
|
10 ** Ask maintainers of refcard translations to update them. |
a8e381cff97f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
64137
diff
changeset
|
11 |
85055 | 12 Emacs 22 translators: |
70885
cb7b2f48a590
Update refcard translations. Add coding cookie.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70813
diff
changeset
|
13 |
cb7b2f48a590
Update refcard translations. Add coding cookie.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70813
diff
changeset
|
14 LANG Translator Status |
85055 | 15 cs Pavel Janík |
16 de Sven Joachim | |
17 fr Eric Jacoboni | |
18 pl Włodek Bzyl | |
19 pt-br Rodrigo Real | |
20 ru Alex Ott | |
21 sk Miroslav Vaško | |
70885
cb7b2f48a590
Update refcard translations. Add coding cookie.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70813
diff
changeset
|
22 |
80859
923385d32ee9
Add notes about NEWS, as a reminder for the next release.
Glenn Morris <rgm@gnu.org>
parents:
80854
diff
changeset
|
23 ** Remove temporary +++/--- lines in NEWS. |
70885
cb7b2f48a590
Update refcard translations. Add coding cookie.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70813
diff
changeset
|
24 |
80859
923385d32ee9
Add notes about NEWS, as a reminder for the next release.
Glenn Morris <rgm@gnu.org>
parents:
80854
diff
changeset
|
25 ** Try to reorder NEWS: most important things first, related items together. |
923385d32ee9
Add notes about NEWS, as a reminder for the next release.
Glenn Morris <rgm@gnu.org>
parents:
80854
diff
changeset
|
26 |
72523
85d27b00d6b0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
72444
diff
changeset
|
27 * BUGS |
85d27b00d6b0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
72444
diff
changeset
|
28 |
84738 | 29 ** Does deleting frames run Lisp code? If so, can we get rid of that? |
30 It is a dangerous design. | |
31 http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg01330.html | |
80180
1c2ce4ba404b
Remove some Emacs 22.1 release items, and update bug list.
Chong Yidong <cyd@stupidchicken.com>
parents:
80124
diff
changeset
|
32 |
83905
2d3f885cd5a2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
83904
diff
changeset
|
33 ** Why were the calls to x_fully_uncatch_errors commented out in eval.c? |
84946 | 34 http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg01987.html |
80180
1c2ce4ba404b
Remove some Emacs 22.1 release items, and update bug list.
Chong Yidong <cyd@stupidchicken.com>
parents:
80124
diff
changeset
|
35 |
85307
af8ac7ad50ad
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
85215
diff
changeset
|
36 ** rms: gnus-dired.el is a mistake. Those features should not |
85308
421d8593b3ca
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
85307
diff
changeset
|
37 be part of Gnus. They should be moved to some other part of Emacs. |
87177
e0020f0f90e3
Remove "window-system in face definition" [of gnus-treat-emphasize]. Remove
Reiner Steib <Reiner.Steib@gmx.de>
parents:
86905
diff
changeset
|
38 rsteib: Gnus dependencies in `gnus-dired.el' (and `mailcap.el') have been |
e0020f0f90e3
Remove "window-system in face definition" [of gnus-treat-emphasize]. Remove
Reiner Steib <Reiner.Steib@gmx.de>
parents:
86905
diff
changeset
|
39 minimized. I don't know what is left to do here. |
86215 | 40 |
100631
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
41 ** Check for modes which bind M-s that conflicts with a new global binding M-s |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
42 and change key bindings where necessary. The current list of modes: |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
43 |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
44 1. Gnus binds `M-s' to `gnus-summary-search-article-forward'. |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
45 |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
46 2. Minibuffer binds `M-s' to `next-matching-history-element' |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
47 (not useful any more since C-s can now search in the history). |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
48 |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
49 3. Shell mode binds `M-s' to `comint-next-matching-input'. |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
50 This key binding can be changed later when we will implement |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
51 incremental search through the shell history. |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
52 |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
53 4. `center-line' in Text mode was already moved to the text formatting |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
54 keymap as `M-o M-s' (thus this binding is not necessary any more |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
55 in `nroff-mode-map' too and can be removed now from the nroff mode |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
56 because it can now use the global key binding `M-o M-s' `center-line'). |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
57 |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
58 5. PCL-CVS binds `M-s' to `cvs-status', and log-edit-mode binds it to |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
59 `log-edit-comment-search-forward'. Perhaps search commands |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
60 on the global key binding `M-s' are useless in these modes. |
9edfb32d9f38
Add a task to check for modes that conflict with a new global binding M-s.
Juri Linkov <juri@jurta.org>
parents:
100332
diff
changeset
|
61 |
79380
64025782b13f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
79343
diff
changeset
|
62 ** sdl.web@gmail.com, 30 Oct: ps-lpr-switches has no effect |
97754 | 63 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg02091.html |
95196
e9bf5f822a12
Remove Windows problem about the XPM image library being
Juanma Barranquero <lekktu@gmail.com>
parents:
94431
diff
changeset
|
64 |
97757
a19f7e903195
\\{...} produces duplicate entries: seems fixed in 23.0.60
Glenn Morris <rgm@gnu.org>
parents:
97756
diff
changeset
|
65 Fixed by this change? |
a19f7e903195
\\{...} produces duplicate entries: seems fixed in 23.0.60
Glenn Morris <rgm@gnu.org>
parents:
97756
diff
changeset
|
66 |
a19f7e903195
\\{...} produces duplicate entries: seems fixed in 23.0.60
Glenn Morris <rgm@gnu.org>
parents:
97756
diff
changeset
|
67 2007-11-09 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
a19f7e903195
\\{...} produces duplicate entries: seems fixed in 23.0.60
Glenn Morris <rgm@gnu.org>
parents:
97756
diff
changeset
|
68 |
a19f7e903195
\\{...} produces duplicate entries: seems fixed in 23.0.60
Glenn Morris <rgm@gnu.org>
parents:
97756
diff
changeset
|
69 * ps-print.el: [...] |
a19f7e903195
\\{...} produces duplicate entries: seems fixed in 23.0.60
Glenn Morris <rgm@gnu.org>
parents:
97756
diff
changeset
|
70 (ps-do-despool): If ps-lpr-switches is not a list, force it to be one. |
a19f7e903195
\\{...} produces duplicate entries: seems fixed in 23.0.60
Glenn Morris <rgm@gnu.org>
parents:
97756
diff
changeset
|
71 |
98234
dc12281f6c35
Add an item for using EMACS_INT for buffer/string positions.
Kenichi Handa <handa@m17n.org>
parents:
97991
diff
changeset
|
72 ** In C, use EMACS_INT for variables and structure members |
dc12281f6c35
Add an item for using EMACS_INT for buffer/string positions.
Kenichi Handa <handa@m17n.org>
parents:
97991
diff
changeset
|
73 for buffer/string positions. E.g. struct it, struct text_pos. |
dc12281f6c35
Add an item for using EMACS_INT for buffer/string positions.
Kenichi Handa <handa@m17n.org>
parents:
97991
diff
changeset
|
74 |
102114 | 75 * DOCUMENTATION |
101423 | 76 |
96800
fff698ac2f2a
*** empty log message ***
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96680
diff
changeset
|
77 ** Clean up Emacs.app references in code and documentation. |
80306
825be512e2e6
(WINDOWS SUPPORT BUGS): Add two issues.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
80300
diff
changeset
|
78 |
91636
238083b6e094
Add major documentation writing that needs doing
Jason Rumney <jasonr@gnu.org>
parents:
91403
diff
changeset
|
79 ** Document new font backend |
238083b6e094
Add major documentation writing that needs doing
Jason Rumney <jasonr@gnu.org>
parents:
91403
diff
changeset
|
80 |
238083b6e094
Add major documentation writing that needs doing
Jason Rumney <jasonr@gnu.org>
parents:
91403
diff
changeset
|
81 ** Document XEmbed support |
238083b6e094
Add major documentation writing that needs doing
Jason Rumney <jasonr@gnu.org>
parents:
91403
diff
changeset
|
82 |
61171
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
83 ** Check the Emacs Tutorial. |
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
84 |
73198
14c255fed792
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
73195
diff
changeset
|
85 The first line of every tutorial must begin with text ending in a |
14c255fed792
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
73195
diff
changeset
|
86 period (".", ASCII 0x2E) saying "Emacs Tutorial" in the respective |
84734 | 87 language. This should be followed by "See end for copying conditions", |
88 likewise in the respective language. | |
61202
27302c01afb4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
61195
diff
changeset
|
89 |
27302c01afb4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
61195
diff
changeset
|
90 After each file name, on the same line or the following line, come the |
27302c01afb4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
61195
diff
changeset
|
91 names of the people who have checked it. |
27302c01afb4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
61195
diff
changeset
|
92 |
61171
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
93 SECTION READERS |
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
94 ---------------------------------- |
85215 | 95 etc/TUTORIAL |
96 etc/TUTORIAL.bg | |
61171
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
97 etc/TUTORIAL.cn |
85215 | 98 etc/TUTORIAL.cs |
103290
582010223992
wl checked de tutorial
Chong Yidong <cyd@stupidchicken.com>
parents:
103285
diff
changeset
|
99 etc/TUTORIAL.de Werner Lemberg |
75947 | 100 etc/TUTORIAL.eo |
85215 | 101 etc/TUTORIAL.es |
102 etc/TUTORIAL.fr | |
103 etc/TUTORIAL.it | |
104 etc/TUTORIAL.ja | |
61171
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
105 etc/TUTORIAL.ko |
85215 | 106 etc/TUTORIAL.nl |
107 etc/TUTORIAL.pl | |
108 etc/TUTORIAL.pt_BR | |
61171
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
109 etc/TUTORIAL.ro |
85215 | 110 etc/TUTORIAL.ru |
111 etc/TUTORIAL.sk | |
112 etc/TUTORIAL.sl | |
113 etc/TUTORIAL.sv | |
114 etc/TUTORIAL.th | |
61171
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
115 etc/TUTORIAL.zh |
7647346fa1e1
Tracking the confirmation of translators in admin/FOR-RELEASE for the new title of the tutorial that will also appear in the splash screen. Improvements and corrections in TUTORIAL.es and TUTORIAL.pt_BR.
Marcelo Toledo <marcelo@gnu.org>
parents:
61063
diff
changeset
|
116 |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
117 ** Check the manual. |
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
118 |
99821
897f082b5b04
No changes necessary for abbrevs.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
99820
diff
changeset
|
119 abbrevs.texi -- cyd |
101196 | 120 ack.texi -- rgm |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
121 anti.texi |
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
122 arevert-xtra.texi |
97176 | 123 basic.texi -- cyd |
98619
83df7259552d
Checked buffers.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
98305
diff
changeset
|
124 buffers.texi -- cyd |
99271
705b95a5c9b0
Checked building.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
99176
diff
changeset
|
125 building.texi -- cyd |
97713 | 126 calendar.texi -- rgm |
97754 | 127 cal-xtra.texi -- rgm |
99837
b5534857db1d
Checked cmdargs.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
99821
diff
changeset
|
128 cmdargs.texi -- cyd |
96669
007868df5b58
commands.texi checked
Chong Yidong <cyd@stupidchicken.com>
parents:
96663
diff
changeset
|
129 commands.texi -- cyd |
99680 | 130 custom.texi -- cyd |
99449 | 131 dired.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
132 dired-xtra.texi |
97892
097f98acbc96
Checked display.texi
Chong Yidong <cyd@stupidchicken.com>
parents:
97784
diff
changeset
|
133 display.texi -- cyd |
96652
a77be0c2c2f7
Two additional files checked.
Chong Yidong <cyd@stupidchicken.com>
parents:
96339
diff
changeset
|
134 emacs.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
135 emacs-xtra.texi |
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
136 emerge-xtra.texi |
96680
fb7776f6d5eb
Checked entering.texi
Chong Yidong <cyd@stupidchicken.com>
parents:
96669
diff
changeset
|
137 entering.texi -- cyd |
103170
b1a13af05536
Checked files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103166
diff
changeset
|
138 files.texi -- cyd |
98301 | 139 fixit.texi -- cyd |
97684 | 140 fortran-xtra.texi -- rgm |
98919 | 141 frames.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
142 glossary.texi |
103171 | 143 help.texi -- cyd |
99176 | 144 indent.texi -- cyd |
97505
64933a4dc585
killing.texi checked
Chong Yidong <cyd@stupidchicken.com>
parents:
97404
diff
changeset
|
145 killing.texi -- cyd |
98305 | 146 kmacro.texi -- cyd |
103339
fa1ab11bd24f
David Reitter has checked the MacOS chapter.
David Reitter <david.reitter@gmail.com>
parents:
103290
diff
changeset
|
147 macos.texi -- davidswelt |
99282
b829792183db
Checked maintaining.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
99271
diff
changeset
|
148 maintaining.texi -- cyd |
98956 | 149 major.texi -- cyd |
96652
a77be0c2c2f7
Two additional files checked.
Chong Yidong <cyd@stupidchicken.com>
parents:
96339
diff
changeset
|
150 mark.texi -- cyd |
102702
6fa13effea11
(Re)checked mini.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102701
diff
changeset
|
151 mini.texi -- cyd |
103212 | 152 misc.texi -- cyd |
103284
5090c7bf0a02
Eli has checked the msdog chapter.
Chong Yidong <cyd@stupidchicken.com>
parents:
103224
diff
changeset
|
153 msdog.texi -- eliz |
5090c7bf0a02
Eli has checked the msdog chapter.
Chong Yidong <cyd@stupidchicken.com>
parents:
103224
diff
changeset
|
154 msdog-xtra.texi -- eliz |
103166 | 155 mule.texi -- cyd |
99310
8a10e7f2f286
Checked search.texi and m-x.texi
Chong Yidong <cyd@stupidchicken.com>
parents:
99282
diff
changeset
|
156 m-x.texi -- cyd |
100078
92f7e2af2df4
Checked programs.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
99940
diff
changeset
|
157 programs.texi -- cyd |
97514 | 158 regs.texi -- cyd |
102412 | 159 rmail.texi -- rgm |
96652
a77be0c2c2f7
Two additional files checked.
Chong Yidong <cyd@stupidchicken.com>
parents:
96339
diff
changeset
|
160 screen.texi -- cyd |
99310
8a10e7f2f286
Checked search.texi and m-x.texi
Chong Yidong <cyd@stupidchicken.com>
parents:
99282
diff
changeset
|
161 search.texi -- cyd |
102590 | 162 sending.texi -- rgm (maybe needs some brief mailclient.el details in |
163 "Mail Sending" section?) | |
99940 | 164 text.texi -- cyd |
103203
7180702e32cc
Checked trouble.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103171
diff
changeset
|
165 trouble.texi -- cyd |
100079
33bcf798638a
Martin changed windows.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
100078
diff
changeset
|
166 windows.texi -- rudalics |
103205
665216719ee6
Checked xresources.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103203
diff
changeset
|
167 xresources.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
168 |
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
169 ** Check the Lisp manual. |
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
170 |
103218
033560ea514f
Checked abbrevs.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103212
diff
changeset
|
171 abbrevs.texi -- cyd |
102514
5dd30d203ccb
Checked advice.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102500
diff
changeset
|
172 advice.texi -- cyd |
103224
503993123ddc
Checked anti.texi, errors.texi, and maps.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103218
diff
changeset
|
173 anti.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
174 back.texi |
102880
7329e5049206
Checked backups.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102857
diff
changeset
|
175 backups.texi -- cyd |
102837
755512b49931
Checked buffers.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102835
diff
changeset
|
176 buffers.texi -- cyd |
102722
ebe6b3eda0e6
Checked commands.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102702
diff
changeset
|
177 commands.texi -- cyd |
102500
12839198013a
Checked compile.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102497
diff
changeset
|
178 compile.texi -- cyd |
102223
b91067f8abe7
Checked control.texi and eval.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102199
diff
changeset
|
179 control.texi -- cyd |
102494
a311c3e455d2
Checked customize.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102461
diff
changeset
|
180 customize.texi -- cyd |
102564
a96ffe85a853
Checked debugging.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102514
diff
changeset
|
181 debugging.texi -- cyd |
102977
16915a402aba
Checked display.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102923
diff
changeset
|
182 display.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
183 edebug.texi |
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
184 elisp.texi |
103224
503993123ddc
Checked anti.texi, errors.texi, and maps.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103218
diff
changeset
|
185 errors.texi -- cyd |
102223
b91067f8abe7
Checked control.texi and eval.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102199
diff
changeset
|
186 eval.texi -- cyd |
102835
f4ed097d6958
Checked files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102834
diff
changeset
|
187 files.texi -- cyd |
102847
1d6560028c66
Checked frames.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102837
diff
changeset
|
188 frames.texi -- cyd |
102457
01f365c83fe2
Checked functions.texi,
Chong Yidong <cyd@stupidchicken.com>
parents:
102412
diff
changeset
|
189 functions.texi -- cyd |
102192 | 190 hash.texi -- cyd |
102801 | 191 help.texi -- cyd |
103150
b271629dd31b
Checked internals.texi, hooks.texi, and locals.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103077
diff
changeset
|
192 hooks.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
193 index.texi |
103150
b271629dd31b
Checked internals.texi, hooks.texi, and locals.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103077
diff
changeset
|
194 internals.texi -- cyd |
102184
7056729acd14
Checked several Lispref files.
Chong Yidong <cyd@stupidchicken.com>
parents:
102138
diff
changeset
|
195 intro.texi -- cyd |
102756
7efa44a52599
Checked keymaps.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102722
diff
changeset
|
196 keymaps.texi -- cyd |
102184
7056729acd14
Checked several Lispref files.
Chong Yidong <cyd@stupidchicken.com>
parents:
102138
diff
changeset
|
197 lists.texi -- cyd |
102497
f4339afd2576
Checked loading.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102494
diff
changeset
|
198 loading.texi -- cyd |
103150
b271629dd31b
Checked internals.texi, hooks.texi, and locals.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103077
diff
changeset
|
199 locals.texi -- cyd |
102461
195338d6f3e5
Checked macros.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102457
diff
changeset
|
200 macros.texi -- cyd |
103224
503993123ddc
Checked anti.texi, errors.texi, and maps.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103218
diff
changeset
|
201 maps.texi -- cyd |
102857
6e93a09a5580
Checked markers.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102849
diff
changeset
|
202 markers.texi -- cyd |
102701
c23ee804f3aa
Checked minibuf.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102590
diff
changeset
|
203 minibuf.texi -- cyd |
102776
057ff8b1fc88
Checked modes.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102756
diff
changeset
|
204 modes.texi -- cyd |
102917
6cd77c51af00
Checked nonascii.texi,
Chong Yidong <cyd@stupidchicken.com>
parents:
102894
diff
changeset
|
205 nonascii.texi -- cyd |
102184
7056729acd14
Checked several Lispref files.
Chong Yidong <cyd@stupidchicken.com>
parents:
102138
diff
changeset
|
206 numbers.texi -- cyd |
7056729acd14
Checked several Lispref files.
Chong Yidong <cyd@stupidchicken.com>
parents:
102138
diff
changeset
|
207 objects.texi -- cyd |
103051 | 208 os.texi -- cyd |
102849
ec97c15e7e13
Checked positions.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102847
diff
changeset
|
209 positions.texi -- cyd |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
210 processes.texi |
102923
140a93d5a866
Checked searching.texi and syntax.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102917
diff
changeset
|
211 searching.texi -- cyd |
102191
20ad90bfa09a
Checked sequences.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102184
diff
changeset
|
212 sequences.texi -- cyd |
102566
436629a6724e
Checked streams.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102564
diff
changeset
|
213 streams.texi -- cyd |
102184
7056729acd14
Checked several Lispref files.
Chong Yidong <cyd@stupidchicken.com>
parents:
102138
diff
changeset
|
214 strings.texi -- cyd |
102199
6f66db4c1c98
Checked symbols.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102192
diff
changeset
|
215 symbols.texi -- cyd |
102923
140a93d5a866
Checked searching.texi and syntax.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102917
diff
changeset
|
216 syntax.texi -- cyd |
102894 | 217 text.texi -- cyd |
103077 | 218 tips.texi -- cyd |
102307
1bf9a079b56d
Checked variables.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
102223
diff
changeset
|
219 variables.texi -- cyd |
103285
7c73e4f57ecf
Martin Rudalics has checked windows.texi.
Chong Yidong <cyd@stupidchicken.com>
parents:
103284
diff
changeset
|
220 windows.texi -- rudalics |
96334
677e18806354
Add manual checking list.
Chong Yidong <cyd@stupidchicken.com>
parents:
96265
diff
changeset
|
221 |
95782
be5846252dfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95561
diff
changeset
|
222 * PLANNED ADDITIONS |
97754 | 223 |
97404 | 224 ** CEDET (not for 23.1 due to paperwork issues, perhaps for 23.2) |
95782
be5846252dfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95561
diff
changeset
|
225 ** js2-mode |
96070
4c8ca47f4ea8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95782
diff
changeset
|
226 ** pov-mode (probably not for Emacs-23: waiting for a Free POV-Ray). |
97955
115c08c1df79
*** empty log message ***
Dan Nicolaescu <dann@ics.uci.edu>
parents:
97892
diff
changeset
|
227 ** gas-mode ? |
97754 | 228 |
56267 | 229 |
230 Local variables: | |
231 mode: outline | |
70885
cb7b2f48a590
Update refcard translations. Add coding cookie.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70813
diff
changeset
|
232 coding: utf-8 |
56267 | 233 end: |