Emacs pretest 28.0.92
* README: * configure.ac: * nt/README.W32: * msdos/sed2v2.inp: Bump Emacs version to 28.0.92. * etc/AUTHORS: * lisp/ldefs-boot.el: Update for pretest 28.0.92. * ChangeLog.3: Regenerate.
This commit is contained in:
parent
e5b191465d
commit
5ba9c8c364
7 changed files with 964 additions and 145 deletions
802
ChangeLog.3
802
ChangeLog.3
|
@ -1,3 +1,803 @@
|
|||
2022-03-10 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix regression in 'custom-prompt-customize-unsaved-options'
|
||||
|
||||
* lisp/cus-edit.el (custom-prompt-customize-unsaved-options):
|
||||
Don't depend on the value returned by 'customize-unsaved'. Fix
|
||||
the doc string. Patch by Sebastian Miele <iota@whxvd.name>.
|
||||
(Bug#54329)
|
||||
|
||||
2022-03-10 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Improve documentation of 'map-charset-chars'
|
||||
|
||||
* doc/lispref/nonascii.texi (Character Sets):
|
||||
* src/charset.c (Fmap_charset_chars): Clarify the codepoint issue
|
||||
in using 'map-charset-chars'.
|
||||
|
||||
2022-03-08 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Avoid assertion violations in 'bidi_resolve_brackets'
|
||||
|
||||
* src/bidi.c (bidi_resolve_brackets): Move assertion to where it
|
||||
really matters. (Bug#54295)
|
||||
|
||||
2022-03-07 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Fix which-func-update doc string
|
||||
|
||||
* lisp/progmodes/which-func.el (which-func-update): Make the doc
|
||||
string match the code (bug#54288).
|
||||
|
||||
2022-03-07 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Improve wording of 'dired-jump's description
|
||||
|
||||
* doc/emacs/dired.texi (Dired Enter): Clarify wording. Reported
|
||||
by Natalie <batalie@riseup.net>.
|
||||
|
||||
2022-03-06 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Add a comment for previous browse-url-of-dired-file change
|
||||
|
||||
* lisp/net/browse-url.el (browse-url-of-dired-file): Add a comment
|
||||
for previous change.
|
||||
|
||||
2022-03-06 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Restore documented Emacs 27.2 behaviour of browse-url-of-dired-file
|
||||
|
||||
* lisp/net/browse-url.el (browse-url-of-dired-file): Restore the
|
||||
documented behaviour -- open a web browser instead of passing to
|
||||
the various handlers.
|
||||
|
||||
2022-03-06 Kyle Meyer <kyle@kyleam.com>
|
||||
|
||||
Update to Org 9.5.2-24-g668205
|
||||
|
||||
2022-03-05 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* lib-src/seccomp-filter.c (main): Use faccessat2 only if defined.
|
||||
|
||||
2022-03-04 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Fix regression in derived-mode-init-mode-variables
|
||||
|
||||
* lisp/emacs-lisp/derived.el (derived-mode-init-mode-variables):
|
||||
Fix regression caused by lexical-binding derived.el (bug#54240).
|
||||
|
||||
2022-03-03 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Avoid crashes when fringe bitmaps are defined in daemon mode
|
||||
|
||||
* src/dispextern.h (gui_define_fringe_bitmap): Add prototype.
|
||||
(max_used_fringe_bitmap): Add declaration.
|
||||
* src/fringe.c (gui_define_fringe_bitmap): New function.
|
||||
* src/w32term.c (w32_draw_fringe_bitmap):
|
||||
* src/xterm.c (x_draw_fringe_bitmap) [USE_CAIRO]: Call
|
||||
'gui_define_fringe_bitmap' if the terminal-specific bitmap data is
|
||||
not available when a fringe bitmap is about to be drawn. Don't
|
||||
try to draw a bitmap that is not known to fringe.c. (Bug#54183)
|
||||
|
||||
2022-03-03 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
One more fix of the BPA implementation
|
||||
|
||||
* src/bidi.c (bidi_find_bracket_pairs): Disable BPA optimization
|
||||
when there are no strong directional characters inside the
|
||||
bracketed pair. (Bug#54219)
|
||||
|
||||
2022-03-03 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix handling of brackets in BPA
|
||||
|
||||
* src/bidi.c (bidi_resolve_brackets): Fix implementation of UBA's
|
||||
N0 rule when there are no strong directional characters inside the
|
||||
bracketed pair. (Bug#54219)
|
||||
|
||||
2022-03-02 Po Lu <luangruo@yahoo.com>
|
||||
|
||||
Correct etc/NEWS entry about bitmapped fonts
|
||||
|
||||
* etc/NEWS: Don't say that bitmap font issues are due to Pango, that's
|
||||
not accurate.
|
||||
|
||||
2022-03-01 Jim Porter <jporterbugs@gmail.com>
|
||||
|
||||
Improve/correct documentation about Eshell variable expansion
|
||||
|
||||
* lisp/eshell/esh-var.el: Correct documentation comment.
|
||||
(eshell-parse-variable-ref): Correct docstring.
|
||||
|
||||
* doc/misc/eshell.texi (Dollars Expansion): Add documentation for
|
||||
$"var"/$'var' and $<command> syntaxes.
|
||||
|
||||
2022-03-01 Jim Porter <jporterbugs@gmail.com>
|
||||
|
||||
Partially revert b03f74e0f2a578b1580e8b1c368665850ee7f808
|
||||
|
||||
That commit regressed '$<command>' forms in Eshell, due to a
|
||||
limitation/bug in how 'eshell-do-eval' works. This fixes
|
||||
bug#54190.
|
||||
|
||||
* lisp/eshell/esh-var.el (eshell-parse-variable-ref): Quote a lambda.
|
||||
|
||||
* test/lisp/eshell/eshell-tests.el (eshell-test/interp-temp-cmd):
|
||||
New test.
|
||||
|
||||
2022-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Backport: Port pre-commit hook to Git 2.35.0
|
||||
|
||||
* build-aux/git-hooks/pre-commit: Use LC_ALL=C grep -E instead of
|
||||
sane_egrep (removed in Git 2.35.0).
|
||||
|
||||
(cherry picked from commit b8a96f055624f86fe965a0d1b7b2495b2db80e63)
|
||||
|
||||
2022-02-28 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Fix :tag for eol in tab-first-completion
|
||||
|
||||
* lisp/indent.el (tab-first-completion): Fix the :tag description
|
||||
(bug#54179).
|
||||
|
||||
2022-02-28 Kyle Meyer <kyle@kyleam.com>
|
||||
|
||||
Update to Org 9.5.2-22-g33543d
|
||||
|
||||
2022-02-27 Dmitry Gutov <dgutov@yandex.ru>
|
||||
|
||||
Add explicit '--no-heading' for ripgrep
|
||||
|
||||
* lisp/progmodes/xref.el (xref-search-program-alist):
|
||||
Add explicit '--no-heading' for ripgrep (bug#54177).
|
||||
|
||||
2022-02-26 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
Follow OpenSSH changes in Tramp
|
||||
|
||||
* lisp/net/tramp-sh.el (tramp-ssh-controlmaster-options):
|
||||
Reimplement. OpenSSH has changed its diagnostics messages.
|
||||
|
||||
2022-02-26 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Document better how to reset attributes of faces for new frames
|
||||
|
||||
* doc/lispref/display.texi (Attribute Functions):
|
||||
* lisp/faces.el (set-face-attribute): Explain how to reset an
|
||||
attribute's value for future frames. (Bug#54156)
|
||||
|
||||
2022-02-25 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* lisp/net/tramp-sh.el (tramp-ssh-controlmaster-options): Adapt test.
|
||||
|
||||
2022-02-24 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Mention flyspell-prog-mode in flyspell-mode doc string
|
||||
|
||||
* lisp/textmodes/flyspell.el (flyspell-mode): Mention
|
||||
flyspell-prog-mode (bug#54131).
|
||||
|
||||
2022-02-23 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Reword face-remap-add-relative manual entry
|
||||
|
||||
* doc/lispref/display.texi (Face Remapping): Clarify the
|
||||
face-remap-add-relative (bug#54114).
|
||||
|
||||
2022-02-22 Philipp Stephani <phst@google.com>
|
||||
|
||||
Fix indexing of module functions that return enumeration types.
|
||||
|
||||
Return types that consist of more than one word need to be enclosed in
|
||||
braces, see Info node `(texinfo) Typed Functions'. Otherwise they are
|
||||
indexed incorrectly.
|
||||
|
||||
* doc/lispref/internals.texi (Module Misc, Module Nonlocal): Enclose
|
||||
multi-word return types in braces.
|
||||
|
||||
2022-02-22 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* doc/misc/transient.texi (Other Options): Fix a @ref. (Bug#54108)
|
||||
|
||||
2022-02-22 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
tramp.texi texinfo 4.13 compatibility
|
||||
|
||||
* doc/misc/tramp.texi (Frequently Asked Questions):
|
||||
Restore compatibility with Texinfo < 5.
|
||||
|
||||
2022-02-22 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
Explain "Tramp" spelling in its manual
|
||||
|
||||
* doc/misc/tramp.texi (Frequently Asked Questions):
|
||||
Explain "Tramp" spelling.
|
||||
|
||||
2022-02-21 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix 'display-line-numbers-mode' in hide-show buffers
|
||||
|
||||
* src/xdisp.c (redisplay_internal): Disable redisplay
|
||||
optimizations that consider just the current line, when
|
||||
'display-line-numbers-mode' is turned on in the buffer.
|
||||
(Bug#54091)
|
||||
|
||||
2022-02-21 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
Don't check whether a deleted window is deletable (Bug#54028)
|
||||
|
||||
* lisp/window.el (window-state-put): Make sure window is live
|
||||
before calling 'window-deletable-p' on it (Bug#54028).
|
||||
|
||||
2022-02-21 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
A friendlier error message from image-mode in an empty buffer
|
||||
|
||||
* lisp/image-mode.el (image-mode): Handle the case where the empty
|
||||
buffer doesn't visit a file (Bug#54084)
|
||||
|
||||
2022-02-20 Kyle Meyer <kyle@kyleam.com>
|
||||
|
||||
Update to Org 9.5.2-17-gea6b74
|
||||
|
||||
2022-02-18 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Improve documentation of filling and justification commands
|
||||
|
||||
* doc/lispref/text.texi (Filling):
|
||||
* lisp/textmodes/fill.el (fill-region-as-paragraph)
|
||||
(default-justification, set-justification, justify-current-line):
|
||||
Clarify "canonicalization" of spaces and the meaning of
|
||||
justification styles. (Bug#54047)
|
||||
(set-justification-left, set-justification-right)
|
||||
(set-justification-full): Improve wording of doc strings.
|
||||
|
||||
2022-02-18 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* lisp/progmodes/subword.el (superword-mode): Doc fix. (Bug#54045)
|
||||
|
||||
2022-02-17 Philipp Stephani <phst@google.com>
|
||||
|
||||
Fix indexing of module functions that return complex types.
|
||||
|
||||
Return types that consist of more than one word need to be enclosed in
|
||||
braces, see Info node `(texinfo) Typed Functions'. Otherwise they are
|
||||
indexed incorrectly.
|
||||
|
||||
* doc/lispref/internals.texi (Module Values): Enclose multi-word
|
||||
return types in braces.
|
||||
|
||||
2022-02-17 Po Lu <luangruo@yahoo.com>
|
||||
|
||||
Prevent crashes caused by invalid locale coding systems
|
||||
|
||||
* src/xterm.c (handle_one_xevent): Prevent a signal inside
|
||||
`setup_coding_system' which crashes recent versions of GLib if
|
||||
the locale coding system is invalid.
|
||||
|
||||
Do not merge to master.
|
||||
|
||||
2022-02-15 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
Fix problem with popd for in remote shell buffers
|
||||
|
||||
* lisp/shell.el (shell-prefixed-directory-name):
|
||||
Use `file-local-name' for DIR. (Bug#53927)
|
||||
|
||||
2022-02-15 Jonas Bernoulli <jonas@bernoul.li>
|
||||
|
||||
Import texi source file for transient manual
|
||||
|
||||
* doc/misc/Makefile.in: Add transient to INFO_COMMON.
|
||||
* doc/misc/transient.texi: New file.
|
||||
|
||||
2022-02-13 Kyle Meyer <kyle@kyleam.com>
|
||||
|
||||
Update to Org 9.5.2-15-gc5ceb6
|
||||
|
||||
2022-02-13 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix 'exchange-point-and-mark' in 'transient-mark-mode'
|
||||
|
||||
* lisp/simple.el (exchange-point-and-mark): Don't deactivate mark
|
||||
when 'transient-mark-mode' is ON. (Bug#53150)
|
||||
|
||||
(cherry picked from commit 415ed4b42515ff2e6dd9b94e964b479e50c6392e)
|
||||
|
||||
2022-02-13 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix "C-SPC C-SPC" after "C-x C-x"
|
||||
|
||||
* lisp/simple.el (exchange-point-and-mark): Fix what the command
|
||||
does when 'transient-mark-mode' is OFF. (Bug#52896)
|
||||
|
||||
(cherry picked from commit 19c6cad1821eb896b2ddd0f6eab030f0880ea254)
|
||||
|
||||
2022-02-13 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix a typo in fontset.el
|
||||
|
||||
* lisp/international/fontset.el (xlfd-regexp-spacing-subnum): Fix
|
||||
a typo. Reported by Greg A. Woods <woods@robohack.ca>.
|
||||
|
||||
2022-02-12 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Note in ELisp manual that too-wide images are truncated
|
||||
|
||||
* doc/lispref/display.texi (Showing Images): Note that images are
|
||||
truncated at the window's edge. (Bug#53952)
|
||||
|
||||
2022-02-11 Andrea Corallo <akrl@sdf.org>
|
||||
|
||||
* lisp/mail/emacsbug.el (report-emacs-bug): Report libgccjit status.
|
||||
|
||||
* lisp/startup.el (normal-top-level): Small code move, improve 202d3be873.
|
||||
|
||||
2022-02-10 Andrea Corallo <akrl@sdf.org>
|
||||
|
||||
* lisp/startup.el (normal-top-level): Disable native-comp if not available
|
||||
|
||||
2022-02-09 Andrea Corallo <akrl@sdf.org>
|
||||
|
||||
Fix integer arithmetic miss-compilation (bug#53451)
|
||||
|
||||
* lisp/emacs-lisp/comp-cstr.el (comp-cstr-set-range-for-arithm):
|
||||
When one of the two sources is negated revert to set dst as
|
||||
number.
|
||||
* test/src/comp-tests.el (comp-tests-type-spec-tests): Add test to
|
||||
verify this is effective.
|
||||
|
||||
2022-02-08 Robert Pluim <rpluim@gmail.com>
|
||||
|
||||
Mark flymake as compatible with emacs-26.1
|
||||
|
||||
* lisp/progmodes/flymake.el: Bump package version and set
|
||||
emacs version in Package-Requires to 26.1 (Bug#53853).
|
||||
|
||||
2022-02-08 Brian Leung <leungbk@posteo.net>
|
||||
|
||||
flymake: Ensure compatibility with older Emacsen
|
||||
|
||||
* lisp/progmodes/flymake.el (flymake--log-1): Use
|
||||
replace-regexp-in-string instead of Emacs 28's
|
||||
string-replace (bug#53853).
|
||||
|
||||
2022-02-07 Eric Abrahamsen <eric@ericabrahamsen.net>
|
||||
|
||||
Don't remove dummy.group from gnus-newsrc-alist on Gnus save
|
||||
|
||||
bug#53352
|
||||
|
||||
* lisp/gnus/gnus-start.el (gnus-gnus-to-quick-newsrc-format): This
|
||||
function was removing dummy.group from the global value of
|
||||
`gnus-newsrc-alist' on save; we only wanted to remove it temporarily.
|
||||
|
||||
2022-02-05 Bob Rogers <rogers@rgrjr.com>
|
||||
|
||||
Fix ietf-drums-get-comment doc string
|
||||
|
||||
* lisp/mail/ietf-drums.el (ietf-drums-get-comment): We really return
|
||||
the last comment (bug#53810).
|
||||
|
||||
2022-02-05 Daniel Martín <mardani29@yahoo.es>
|
||||
|
||||
Fix typo in display.texi
|
||||
|
||||
* doc/lispref/display.texi (Making Buttons): Fix typo. (Bug#53807)
|
||||
|
||||
2022-02-03 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
Revert an erroneous change in tramp-cache.el
|
||||
|
||||
* lisp/net/tramp-cache.el (tramp-get-hash-table):
|
||||
Use `string-match-p' instead of `string-search'. The latter one
|
||||
was introduced by accident. Reported by Kai Tetzlaff <kai@tetzlaff.eu>.
|
||||
|
||||
2022-02-02 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Improve documentation of 'emacs-version'
|
||||
|
||||
* doc/emacs/trouble.texi (Checklist): Mention the possibility of
|
||||
invoking 'emacs-version' with a prefix argument.
|
||||
|
||||
* lisp/version.el (emacs-version): Improve doc string. (Bug#53720)
|
||||
|
||||
2022-02-01 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* etc/NEWS: Apply final fixes after proofreading.
|
||||
|
||||
2022-01-31 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Clarify documentation of a "face's font"
|
||||
|
||||
* doc/lispref/display.texi (Attribute Functions)
|
||||
(Face Attributes): Clarify that the :font attribute of a face and
|
||||
the font returned by 'face-font' are by default for ASCII
|
||||
characters. (Bug#53664)
|
||||
|
||||
2022-01-31 Alan Mackenzie <acm@muc.de>
|
||||
|
||||
Bind Qdebugger to Qdebug in signal_or_quit.
|
||||
|
||||
* src/eval.c (signal_or_quit): Bind the correct variable, Qdebugger (not
|
||||
Vdebugger) to Qdebug in the section for errors in batch jobs.
|
||||
(syms_of_eval): New DEFSYM for Qdebugger.
|
||||
|
||||
2022-01-30 Kyle Meyer <kyle@kyleam.com>
|
||||
|
||||
Update to Org 9.5.2-13-gdd6486
|
||||
|
||||
2022-01-30 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix regression in Occur Edit mode
|
||||
|
||||
* lisp/replace.el (occur-after-change-function): Fix the algorithm
|
||||
to find the smallest change in some corner cases. (Bug#53598)
|
||||
|
||||
2022-01-29 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix last change of Malayalam composition rules
|
||||
|
||||
* lisp/language/indian.el (malayalam-composable-pattern):
|
||||
Reinstate. Instead of removing it, add any sequence of
|
||||
Malayalam characters to the existing patterns, so as not
|
||||
to lose the patterns that use ZWJ and ZWNJ. (Bug#53625)
|
||||
|
||||
2022-01-29 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix rendering of Malayalam script
|
||||
|
||||
* lisp/language/indian.el (malayalam-composable-pattern): Remove.
|
||||
(script-regexp-alist): Remove 'malayalam-composable-pattern'.
|
||||
Instead, pass any sequence of Malayalam codepoints to the shaping
|
||||
engine. (Bug#53625)
|
||||
|
||||
2022-01-29 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Improve documentation of Occur mode
|
||||
|
||||
* doc/emacs/search.texi (Other Repeating Search): Improve wording
|
||||
and document Occur Edit mode better.
|
||||
|
||||
2022-01-29 Alan Third <alan@idiocy.org>
|
||||
|
||||
Remove debug logging
|
||||
|
||||
* src/nsterm.m ([EmacsView copyRect:to:]): Remove logging as it's no
|
||||
longer required.
|
||||
|
||||
2022-01-29 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
Fix error in filelock.c
|
||||
|
||||
* src/filelock.c (lock_file): Move call of file name handler to
|
||||
`Flock_file'. Determine lock_filename only in case
|
||||
create_lockfiles is non-nil. Adapt the rest of the function accordingly.
|
||||
(Flock_file): Do not check for create_lockfiles. Call file name
|
||||
handler if appropriate. (Bug#53207)
|
||||
|
||||
2022-01-27 Juri Linkov <juri@linkov.net>
|
||||
|
||||
* lisp/frame.el (clone-frame): Filter out 'parent-id' (bug#51883).
|
||||
|
||||
2022-01-26 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Partially revert a fill-region-as-paragraph regression
|
||||
|
||||
* lisp/textmodes/fill.el (fill-region-as-paragraph): Revert
|
||||
e186af261 (bug#53537), because it leads to regressions. (But
|
||||
leave tests in place.)
|
||||
|
||||
2022-01-26 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix 'make_lispy_position' when there's an image at EOB
|
||||
|
||||
* src/xdisp.c (move_it_to): Don't compare IT_CHARPOS with an
|
||||
invalid TO_CHARPOS. (Bug#53546)
|
||||
|
||||
2022-01-26 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Fix copyright-find-copyright when searching from the end
|
||||
|
||||
* lisp/emacs-lisp/copyright.el (copyright-find-copyright): Make
|
||||
the double check also work when searching from the end (bug#7179).
|
||||
|
||||
Do not merge to master.
|
||||
|
||||
2022-01-26 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Fix copyright.el comment and add a test
|
||||
|
||||
* lisp/emacs-lisp/copyright.el (copyright-find-copyright): Fix
|
||||
comment (bug#7179).
|
||||
|
||||
Do not merge to master.
|
||||
|
||||
2022-01-24 Philipp Stephani <phst@google.com>
|
||||
|
||||
* configure.ac (LIBSECCOMP): Bump minimum version for faccessat2.
|
||||
|
||||
2022-01-24 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Make the `f' command work in image-mode again
|
||||
|
||||
* lisp/image.el (image-show-frame): Protect against not having
|
||||
computed the animation data yed (bug#53489).
|
||||
|
||||
2022-01-22 Philipp Stephani <phst@google.com>
|
||||
|
||||
Seccomp: improve support for newer versions of glibc (Bug#51073)
|
||||
|
||||
* lib-src/seccomp-filter.c (main): Allow 'pread64' and 'faccessat2'
|
||||
system calls. Newer versions of glibc use these system call (starting
|
||||
with commits 95c1056962a3f2297c94ce47f0eaf0c5b6563231 and
|
||||
3d3ab573a5f3071992cbc4f57d50d1d29d55bde2, respectively).
|
||||
|
||||
2022-01-21 Thomas Fitzsimmons <fitzsim@fitzsim.org>
|
||||
|
||||
EUDC: Fix a quoting bug in the BBDB backend
|
||||
|
||||
* lisp/net/eudcb-bbdb.el (eudc-bbdb-query-internal): Fix a quoting
|
||||
bug introduced during lexical-binding conversion.
|
||||
|
||||
2022-01-21 Sergey Vinokurov <serg.foo@gmail.com>
|
||||
|
||||
Fix memory-report-object-size to initialize memory-report--type-size
|
||||
|
||||
* lisp/emacs-lisp/memory-report.el (memory-report-object-size):
|
||||
Allow using function directly (bug#53310).
|
||||
|
||||
Do not merge to master.
|
||||
|
||||
2022-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
Fix menu-bar mouse clicks in "C-h c" and "C-h k" (bug#53322)
|
||||
|
||||
* lisp/subr.el (event-start, event-end): Handle '(menu-bar)'
|
||||
events.
|
||||
* lisp/net/browse-url.el (browse-url-interactive-arg): Simplify
|
||||
accordingly.
|
||||
|
||||
(cherry picked from commit 9ceb3070e34ad8a54184fd0deda477bf5ff77000)
|
||||
|
||||
2022-01-20 Eli Zaretskii <eliz@gnu.org> (tiny change)
|
||||
|
||||
Fix UB in ebrowse
|
||||
|
||||
* lib-src/ebrowse.c (matching_regexp): Avoid writing beyond the
|
||||
limits of 'matching_regexp_buffer'. Patch by Jan Stranik
|
||||
<jan@stranik.org>. (Bug#53333)
|
||||
|
||||
2022-01-20 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Fix execute-extended-command-for-buffer in fundamental-mode
|
||||
|
||||
* lisp/simple.el (execute-extended-command-for-buffer): Protect
|
||||
against the current local map being nil (bug#52907).
|
||||
|
||||
2022-01-20 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
Add workaround to handle a problem with Enlightenment WM (Bug#53298)
|
||||
|
||||
* src/xterm.c (handle_one_xevent): Handle setting of variable
|
||||
'x_set_frame_visibility_more_laxly' when receiving an Expose or
|
||||
FocusIn event (Bug#53298).
|
||||
(Qexpose): Define symbol.
|
||||
(x_set_frame_visibility_more_laxly): New Lisp variable.
|
||||
* etc/PROBLEMS: Mention frame redraw problem with the
|
||||
Enlightenment WM and 'x-set-frame-visibility-more-laxly'
|
||||
workaround.
|
||||
|
||||
2022-01-17 Po Lu <luangruo@yahoo.com>
|
||||
|
||||
Fix regression leading to flickering tooltips when the mouse is moved
|
||||
|
||||
* lisp/tooltip.el (tooltip-show-help): Compare string with
|
||||
previous tooltip string ignoring properties.
|
||||
|
||||
2022-01-17 Andrea Corallo <akrl@sdf.org>
|
||||
|
||||
* Fix native comp for non trivial function names (bug#52833)
|
||||
|
||||
* lisp/emacs-lisp/comp.el (comp-c-func-name): Fix native compilation
|
||||
for functions with function names containing non trivial
|
||||
characters (bug#52833).
|
||||
|
||||
This commit is the backport of e7699bf290.
|
||||
|
||||
Do not merge to master
|
||||
|
||||
2022-01-15 Kyle Meyer <kyle@kyleam.com>
|
||||
|
||||
Update to Org 9.5.2-9-g7ba24c
|
||||
|
||||
2022-01-15 Juri Linkov <juri@linkov.net>
|
||||
|
||||
* lisp/net/dictionary.el (dictionary-context-menu): Use package prefix.
|
||||
|
||||
2022-01-15 Philipp Stephani <phst@google.com>
|
||||
|
||||
Mark a few more map tests as unstable on Emacs 28 (Bug#46722).
|
||||
|
||||
At least for me, these tests still occasionally fail.
|
||||
|
||||
Do not merge to master.
|
||||
|
||||
* test/lisp/emacs-lisp/map-tests.el (test-map-into-hash-test)
|
||||
(test-map-merge, test-map-merge-with, test-map-merge-empty): Mark as
|
||||
unstable.
|
||||
|
||||
2022-01-15 Philipp Stephani <phst@google.com>
|
||||
|
||||
* lisp/indent.el (tab-first-completion): Fix incorrect choices.
|
||||
|
||||
2022-01-14 Philipp Stephani <phst@google.com>
|
||||
|
||||
* lisp/simple.el (undo-no-redo): Fix customization group
|
||||
|
||||
* lisp/progmodes/xref.el (xref-file-name-display): Fix docstring.
|
||||
|
||||
2022-01-14 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Avoid another segfault in 'face_at_buffer_position'
|
||||
|
||||
* src/xfaces.c (face_at_buffer_position): Make really sure the
|
||||
default face is usable. (Bug#53254)
|
||||
|
||||
2022-01-14 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
Mark test-map-into as unstable
|
||||
|
||||
* test/lisp/emacs-lisp/map-tests.el (test-map-into): Mark as
|
||||
unstable (bug#46722).
|
||||
|
||||
Do not merge to master.
|
||||
|
||||
2022-01-13 Philipp Stephani <phst@google.com>
|
||||
|
||||
Fix Edebug specification for inline functions (Bug#53068).
|
||||
|
||||
* lisp/emacs-lisp/inline.el (inline-quote): Fix Edebug specification.
|
||||
|
||||
* test/lisp/emacs-lisp/edebug-tests.el (edebug-tests-inline): New unit
|
||||
test.
|
||||
|
||||
2022-01-13 N. Jackson <nljlistbox2@gmail.com>
|
||||
|
||||
Remove mention of removed `gnus-treat-play-sounds' variable from manual
|
||||
|
||||
* info/gnus.info: Remove `gnus-treat-play-sounds' from
|
||||
manual. According to lisp/gnus/ChangeLog.3 this variable was
|
||||
removed in 2010 (bug#53192).
|
||||
|
||||
2022-01-12 Mattias Engdegård <mattiase@acm.org>
|
||||
|
||||
Revert "Fix closure-conversion of shadowed captured lambda-lifted vars"
|
||||
|
||||
This reverts commit 3ec8c8b3ae2359ceb8135b672e86526969c16b7e.
|
||||
|
||||
It was committed to a stable branch without prior discussion;
|
||||
see bug#53071.
|
||||
|
||||
2022-01-12 Juri Linkov <juri@linkov.net>
|
||||
|
||||
* doc/lispref/windows.texi (Textual Scrolling): Remove obsolete text.
|
||||
|
||||
Remove text about scrolling the minibuffer from the buffer,
|
||||
obsolete since Emacs 27 (bug#51210).
|
||||
|
||||
2022-01-12 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* lisp/files.el (lock-file-name-transforms): Doc tweaks.
|
||||
|
||||
2022-01-12 Mattias Engdegård <mattiase@acm.org>
|
||||
|
||||
Fix closure-conversion of shadowed captured lambda-lifted vars
|
||||
|
||||
Lambda-lifted variables (ones passed explicitly to lambda-lifted
|
||||
functions) that are also captured in an outer closure and shadowed
|
||||
were renamed incorrectly (bug#51982).
|
||||
|
||||
Reported by Paul Pogonyshev.
|
||||
|
||||
* lisp/emacs-lisp/cconv.el (cconv--lifted-arg): New.
|
||||
(cconv-convert): Provide correct definiens for the closed-over
|
||||
variable.
|
||||
* test/lisp/emacs-lisp/bytecomp-tests.el (bytecomp-tests--test-cases):
|
||||
* test/lisp/emacs-lisp/cconv-tests.el (cconv-tests--intern-all)
|
||||
(cconv-closure-convert-remap-var): Add tests.
|
||||
|
||||
(cherry picked from commit 45252ad8f932c98a373ef0ab7f3363a3e27ccbe4)
|
||||
|
||||
2022-01-12 Philipp Stephani <phst@google.com>
|
||||
|
||||
Fix test lisp/cedet/semantic/bovine/gcc-tests on macOS (Bug#52431)
|
||||
|
||||
* test/lisp/cedet/semantic/bovine/gcc-tests.el
|
||||
(semantic-gcc-test-output-parser-this-machine): Also detect Apple
|
||||
clang on macOS Monterey.
|
||||
|
||||
(cherry picked from commit 6e52becfbe2a33c025b8c4838b3c8f06ba5a6fb8)
|
||||
|
||||
2022-01-12 Mattias Engdegård <mattiase@acm.org>
|
||||
|
||||
Don't fail flymake-tests if `gcc` actually is Clang
|
||||
|
||||
* test/lisp/progmodes/flymake-tests.el (flymake-tests--gcc-is-clang)
|
||||
(different-diagnostic-types, included-c-header-files): Skip tests that
|
||||
depend on the `gcc` command really being GCC and not Clang.
|
||||
|
||||
(cherry picked from commit b2167d98432a78442522b7564e22f47d75a98b6f)
|
||||
|
||||
2022-01-10 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Revert "Remove the filename argument from the command line after an ELC+ELN build"
|
||||
|
||||
This reverts commit ffc047c896413b6e00032518fc934f08768671fa.
|
||||
|
||||
Please don't install anything non-trivial on the release branch
|
||||
without asking first.
|
||||
|
||||
2022-01-10 Alan Mackenzie <acm@muc.de>
|
||||
|
||||
Remove the filename argument from the command line after an ELC+ELN build
|
||||
|
||||
This fixes bug #53164. Without this fix, bootstrap-emacs loads the source
|
||||
file uselessly into a buffer after completing the compilation.
|
||||
|
||||
2022-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
(save-some-buffers): Simplify the fix for bug#46374
|
||||
|
||||
* lisp/files.el (save-some-buffers): Only check the
|
||||
`save-some-buffers-function` property on functions from
|
||||
`save-some-buffers-default-predicate` since callers which provide
|
||||
a `pred` argument can arrange to compute `pred` themselves if needed.
|
||||
|
||||
* test/lisp/files-tests.el (files-tests-buffer-offer-save): Don't test
|
||||
with `pred` set to `save-some-buffers-root` since it's not an
|
||||
appropriate function for that any more.
|
||||
|
||||
2022-01-09 Stefan Kangas <stefan@marxist.se>
|
||||
|
||||
Improve docstring of edit-abbrevs
|
||||
|
||||
* lisp/abbrev.el (edit-abbrevs): Doc fix; don't use obsolete name.
|
||||
Improve docstring formatting.
|
||||
|
||||
2022-01-09 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Revert "Fix alignment on font size change in tabulated-list-mode"
|
||||
|
||||
This reverts commit 2767c89db729a6106146d0aeff76678c64d4fc53.
|
||||
|
||||
That change caused a regression in a much more important use
|
||||
case, see bug#53133.
|
||||
|
||||
2022-01-08 Stefan Kangas <stefan@marxist.se>
|
||||
|
||||
Clarify docstring of package-native-compile
|
||||
|
||||
* lisp/emacs-lisp/package.el (package-native-compile): Clarify
|
||||
docstring.
|
||||
|
||||
2022-01-08 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
Fix Subject "simplification" in Rmail
|
||||
|
||||
* lisp/mail/rmail.el (rmail-simplified-subject): Match against
|
||||
"[external]" _after_ decoding the Subject by RFC-2047.
|
||||
|
||||
2022-01-08 Stefan Kangas <stefan@marxist.se>
|
||||
|
||||
Bump Emacs version to 28.0.91
|
||||
|
||||
* README:
|
||||
* configure.ac:
|
||||
* msdos/sed2v2.inp:
|
||||
* nt/README.W32: Bump Emacs version to 28.0.91.
|
||||
|
||||
2022-01-05 Dmitry Gutov <dgutov@yandex.ru>
|
||||
|
||||
Fix vc-git with old Git over Tramp and cygwin-mount.el
|
||||
|
@ -234065,7 +234865,7 @@
|
|||
|
||||
This file records repository revisions from
|
||||
commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to
|
||||
commit e7aa3ece52d26cc7e4d3f3990aff56127389779f (inclusive).
|
||||
commit dbe6a3ecf74536cbfb7ca59630b48020ae4e732a (inclusive).
|
||||
See ChangeLog.2 for earlier changes.
|
||||
|
||||
;; Local Variables:
|
||||
|
|
2
README
2
README
|
@ -2,7 +2,7 @@ Copyright (C) 2001-2022 Free Software Foundation, Inc.
|
|||
See the end of the file for license conditions.
|
||||
|
||||
|
||||
This directory tree holds version 28.0.91 of GNU Emacs, the extensible,
|
||||
This directory tree holds version 28.0.92 of GNU Emacs, the extensible,
|
||||
customizable, self-documenting real-time display editor.
|
||||
|
||||
The file INSTALL in this directory says how to build and install GNU
|
||||
|
|
|
@ -23,7 +23,7 @@ dnl along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|||
|
||||
AC_PREREQ(2.65)
|
||||
dnl Note this is parsed by (at least) make-dist and lisp/cedet/ede/emacs.el.
|
||||
AC_INIT(GNU Emacs, 28.0.91, bug-gnu-emacs@gnu.org, , https://www.gnu.org/software/emacs/)
|
||||
AC_INIT(GNU Emacs, 28.0.92, bug-gnu-emacs@gnu.org, , https://www.gnu.org/software/emacs/)
|
||||
|
||||
dnl Set emacs_config_options to the options of 'configure', quoted for the shell,
|
||||
dnl and then quoted again for a C string. Separate options with spaces.
|
||||
|
|
270
etc/AUTHORS
270
etc/AUTHORS
|
@ -68,7 +68,7 @@ Adrian Robert: co-wrote ns-win.el
|
|||
and changed nsterm.m nsfns.m nsfont.m nsterm.h nsmenu.m configure.ac
|
||||
src/Makefile.in macos.texi README config.in emacs.c font.c keyboard.c
|
||||
nsgui.h nsimage.m xdisp.c image.c lib-src/Makefile.in lisp.h menu.c
|
||||
Makefile.in and 78 other files
|
||||
Makefile.in and 79 other files
|
||||
|
||||
Ævar Arnfjörð Bjarmason: changed rcirc.el
|
||||
|
||||
|
@ -105,8 +105,8 @@ and co-wrote cc-align.el cc-cmds.el cc-defs.el cc-engine.el cc-fonts.el
|
|||
cc-langs.el cc-mode.el cc-styles.el cc-vars.el
|
||||
and changed cc-mode.texi minibuf.c bytecomp.el edebug.el follow.el
|
||||
window.c display.texi subr.el syntax.texi progmodes/compile.el
|
||||
programs.texi keyboard.c lisp.h modes.texi window.el windows.texi
|
||||
cus-start.el eval.c font-lock.el isearch.el newcomment.el
|
||||
programs.texi eval.c keyboard.c lisp.h modes.texi window.el
|
||||
windows.texi cus-start.el font-lock.el isearch.el newcomment.el
|
||||
and 166 other files
|
||||
|
||||
Alan Modra: changed unexelf.c
|
||||
|
@ -127,8 +127,7 @@ and changed nsterm.m nsterm.h nsfns.m image.c nsmenu.m configure.ac
|
|||
Alastair Burt: changed gnus-art.el smiley.el
|
||||
|
||||
Albert Krewinkel: co-wrote sieve-manage.el
|
||||
and changed sieve.el gnus-msg.el gnus.texi mail/sieve-manage.el
|
||||
message.el sieve.texi
|
||||
and changed sieve.el gnus-msg.el gnus.texi message.el sieve.texi
|
||||
|
||||
Albert L. Ting: changed gnus-group.el mail-hist.el
|
||||
|
||||
|
@ -181,7 +180,7 @@ Alexandre Julliard: wrote vc-git.el
|
|||
and changed vc.el ewoc.el
|
||||
|
||||
Alexandre Oliva: wrote gnus-mlspl.el
|
||||
and changed unexelf.c emacs-regex.c format.el iris4d.h iris5d.h unexsgi.c
|
||||
and changed unexelf.c format.el iris4d.h iris5d.h regex-emacs.c unexsgi.c
|
||||
|
||||
Alexandre Veyrenc: changed fr-refcard.tex
|
||||
|
||||
|
@ -332,9 +331,9 @@ Andreas Schwab: changed configure.ac lisp.h xdisp.c process.c alloc.c
|
|||
|
||||
Andreas Seltenreich: changed nnweb.el gnus.texi message.el gnus-sum.el
|
||||
gnus.el nnslashdot.el gnus-srvr.el gnus-util.el mm-url.el mm-uu.el
|
||||
url-http.el xterm.c battery.el comint.el doc/misc/gnus.texi
|
||||
easy-mmode.el gmm-utils.el gnus-art.el gnus-cite.el gnus-draft.el
|
||||
gnus-group.el and 7 other files
|
||||
url-http.el xterm.c battery.el comint.el easy-mmode.el gmm-utils.el
|
||||
gnus-art.el gnus-cite.el gnus-draft.el gnus-group.el gnus-ml.el
|
||||
and 6 other files
|
||||
|
||||
Andreas Vögele: changed pgg-def.el
|
||||
|
||||
|
@ -376,9 +375,9 @@ Andrew Hyatt: changed bug-triage CONTRIBUTE org-archive.el org.el
|
|||
org.texi
|
||||
|
||||
Andrew Innes: changed makefile.nt w32fns.c w32term.c w32.c w32proc.c
|
||||
fileio.c w32-fns.el dos-w32.el inc/ms-w32.h w32term.h makefile.def
|
||||
fileio.c ms-w32.h w32-fns.el dos-w32.el w32term.h makefile.def
|
||||
unexw32.c w32menu.c w32xfns.c addpm.c cmdproxy.c emacs.c w32-win.el
|
||||
w32inevt.c configure.bat lread.c and 129 other files
|
||||
w32inevt.c configure.bat lread.c and 128 other files
|
||||
|
||||
Andrew L. Moore: changed executable.el
|
||||
|
||||
|
@ -434,11 +433,11 @@ Ansgar Burchardt: changed latin-ltx.el
|
|||
|
||||
Antoine Beaupré: changed vc-git.el
|
||||
|
||||
Antoine Levitt: changed gnus-group.el gnus-sum.el message.texi
|
||||
Antoine Levitt: changed gnus-group.el gnus-sum.el message.texi ada-prj.el
|
||||
ange-ftp.el cus-edit.el dired-x.el ebnf2ps.el emerge.el erc-button.el
|
||||
erc-goodies.el erc-stamp.el erc-track.el files.el find-file.el
|
||||
gnus-art.el gnus-uu.el gnus.el gnus.texi message.el mh-funcs.el
|
||||
mh-mime.el and 7 other files
|
||||
and 8 other files
|
||||
|
||||
Antonin Houska: changed newcomment.el
|
||||
|
||||
|
@ -479,11 +478,11 @@ Arthur Miller: changed help-fns.el ange-ftp.el bytecomp.el comp.c comp.el
|
|||
|
||||
Artur Malabarba: wrote char-fold-tests.el faces-tests.el isearch-tests.el
|
||||
let-alist.el simple-tests.el sort-tests.el tabulated-list-tests.el
|
||||
and changed package.el isearch.el lisp/char-fold.el files.el
|
||||
tabulated-list.el package-test.el menu-bar.el replace.el bytecomp.el
|
||||
faces.el files-x.el custom.el custom.texi help-fns.el
|
||||
let-alist-tests.el simple.el subr-tests.el align.el bindings.el
|
||||
cl-lib-tests.el cl-macs.el and 43 other files
|
||||
and changed package.el isearch.el char-fold.el files.el tabulated-list.el
|
||||
package-test.el menu-bar.el replace.el bytecomp.el faces.el files-x.el
|
||||
custom.el custom.texi help-fns.el let-alist-tests.el simple.el
|
||||
subr-tests.el align.el bindings.el cl-lib-tests.el cl-macs.el
|
||||
and 43 other files
|
||||
|
||||
Artyom Loenko: changed Info.plist.in
|
||||
|
||||
|
@ -576,7 +575,7 @@ and changed org-clock.el org.el
|
|||
Benjamin Ragheb: changed fortune.el
|
||||
|
||||
Benjamin Riefenstahl: changed files.el image-mode.el nnrss-tests.el
|
||||
w32select.c emacs.c image.el inc/ms-w32.h lisp.h mac-win.el macterm.c
|
||||
w32select.c emacs.c image.el lisp.h mac-win.el macterm.c ms-w32.h
|
||||
mule-cmds.el nnrss.el runemacs.c tcl.el w32.c w32.h
|
||||
|
||||
Benjamin Rutt: co-wrote gnus-dired.el
|
||||
|
@ -584,7 +583,7 @@ and changed vc.el gnus-msg.el message.el diff-mode.el ffap.el nnimap.el
|
|||
nnmbox.el simple.el vc-cvs.el
|
||||
|
||||
Ben Key: changed w32.c w32fns.c w32menu.c configure.bat INSTALL w32.h
|
||||
w32term.c configure.ac emacs.c inc/ms-w32.h keyboard.c make-docfile.c
|
||||
w32term.c configure.ac emacs.c keyboard.c make-docfile.c ms-w32.h
|
||||
nsfont.m nsterm.m sound.c xfaces.c
|
||||
|
||||
Ben Menasha: changed nnmh.el
|
||||
|
@ -656,8 +655,8 @@ Bob Nnamtrop: changed viper-cmd.el
|
|||
Bob Olson: co-wrote cperl-mode.el
|
||||
|
||||
Bob Rogers: changed vc-dir.el vc-svn.el cperl-mode.el diff.el ewoc.el
|
||||
ffap.el files.el maintaining.texi sql.el thingatpt.el vc.el
|
||||
vc1-xtra.texi
|
||||
ffap.el files.el ietf-drums.el maintaining.texi sql.el thingatpt.el
|
||||
vc.el vc1-xtra.texi
|
||||
|
||||
Bob Weiner: changed info.el quail.el dframe.el etags.c rmail.el
|
||||
rmailsum.el speedbar.el
|
||||
|
@ -709,7 +708,8 @@ Brian Fox: changed Makefile.in Makefile configure.ac minibuf.c dired.el
|
|||
Brian Jenkins: changed frame.c frames.texi hooks.texi
|
||||
|
||||
Brian Leung: changed comint.el gud.el advice.el comp.c comp.el em-hist.el
|
||||
files.el find-func.el gdb-mi.el help.el nadvice.el shell.el shortdoc.el
|
||||
files.el find-func.el flymake.el gdb-mi.el help.el nadvice.el shell.el
|
||||
shortdoc.el
|
||||
|
||||
Brian Marick: co-wrote hideif.el
|
||||
|
||||
|
@ -833,7 +833,7 @@ and co-wrote longlines.el tango-dark-theme.el tango-theme.el
|
|||
and changed simple.el display.texi xdisp.c files.el frames.texi
|
||||
cus-edit.el files.texi custom.el subr.el text.texi faces.el keyboard.c
|
||||
startup.el package.el misc.texi emacs.texi modes.texi mouse.el
|
||||
custom.texi image.c window.el and 932 other files
|
||||
custom.texi image.c window.el and 934 other files
|
||||
|
||||
Chris Chase: co-wrote idlw-shell.el idlwave.el
|
||||
|
||||
|
@ -850,8 +850,8 @@ Chris Hall: changed callproc.c frame.c
|
|||
|
||||
Chris Hanson: changed xscheme.el scheme.el xterm.c hpux.h x11term.c
|
||||
hp9000s300.h keyboard.c process.c texinfmt.el sort.el syntax.c
|
||||
texnfo-upd.el x11fns.c xfns.c dired.el emacs-regex.c emacsclient.c
|
||||
fileio.c hp9000s800.h indent.c info.el and 17 other files
|
||||
texnfo-upd.el x11fns.c xfns.c dired.el emacsclient.c fileio.c
|
||||
hp9000s800.h indent.c info.el man.el and 17 other files
|
||||
|
||||
Chris Hecker: changed calc-aent.el
|
||||
|
||||
|
@ -973,12 +973,10 @@ Claudio Fontana: changed Makefile.in leim/Makefile.in lib-src/Makefile.in
|
|||
|
||||
Clemens Radermacher: changed cus-start.el frame.c minibuf.texi window.el
|
||||
|
||||
Clément Pit--Claudel: changed debugging.texi emacs-lisp/debug.el eval.c
|
||||
progmodes/python.el subr-tests.el subr.el url-http.el url-vars.el
|
||||
|
||||
Clément Pit-Claudel: changed Dockerfile.emba button.el configure.ac
|
||||
display.texi ert.el gitlab-ci.yml keyboard.c tex-mode.el text.texi
|
||||
xdisp.c
|
||||
debugging.texi display.texi emacs-lisp/debug.el ert.el eval.c
|
||||
gitlab-ci.yml keyboard.c progmodes/python.el subr-tests.el subr.el
|
||||
tex-mode.el text.texi url-http.el url-vars.el xdisp.c
|
||||
|
||||
Codruț Constantin Gușoi: changed files.el
|
||||
|
||||
|
@ -1114,9 +1112,9 @@ Daniel Lublin: changed dns-mode.el
|
|||
|
||||
Daniel Martín: changed shortdoc.el nsterm.m erc.texi files.el files.texi
|
||||
msdos-xtra.texi ns-win.el basic.texi cmacexp.el compilation.txt
|
||||
compile-tests.el cscope.el diff.el dired.el editfns.c emacs.texi
|
||||
files-tests.el find-func-tests.el find-func.el frame.c frame.el
|
||||
and 16 other files
|
||||
compile-tests.el cscope.el diff.el dired.el display.texi editfns.c
|
||||
emacs.texi files-tests.el find-func-tests.el find-func.el frame.c
|
||||
and 17 other files
|
||||
|
||||
Daniel McClanahan: changed lisp-mode.el
|
||||
|
||||
|
@ -1201,7 +1199,7 @@ and co-wrote latin-ltx.el socks.el
|
|||
and changed configure.ac help.el mule-cmds.el fortran.el mule-conf.el
|
||||
xterm.c browse-url.el mule.el coding.c src/Makefile.in european.el
|
||||
fns.c mule-diag.el simple.el wid-edit.el cus-edit.el cus-start.el
|
||||
files.el keyboard.c byte-opt.el info.el and 771 other files
|
||||
files.el keyboard.c byte-opt.el info.el and 772 other files
|
||||
|
||||
Dave Pearson: wrote 5x5.el quickurl.el
|
||||
|
||||
|
@ -1273,7 +1271,7 @@ David Hedbor: changed nnmail.el
|
|||
|
||||
David Hull: changed etags.c vc-hg.el
|
||||
|
||||
David Hunter: changed flymake.el inc/ms-w32.h process.c
|
||||
David Hunter: changed flymake.el ms-w32.h process.c
|
||||
|
||||
David J. Biesack: changed antlr-mode.el quickurl.el
|
||||
|
||||
|
@ -1371,10 +1369,10 @@ Debarshi Ray: changed erc-backend.el erc.el
|
|||
|
||||
Decklin Foster: changed nngateway.el
|
||||
|
||||
Deepak Goel: changed idlw-shell.el feedmail.el files.el find-func.el
|
||||
flymake.el mh-search.el mh-seq.el mh-thread.el mh-xface.el org.el
|
||||
simple.el vc.el vhdl-mode.el wdired.el README allout.el appt.el
|
||||
apropos.el artist.el bibtex.el bindings.el and 83 other files
|
||||
Deepak Goel: changed idlw-shell.el ada-xref.el feedmail.el files.el
|
||||
find-func.el flymake.el mh-search.el mh-seq.el mh-thread.el mh-xface.el
|
||||
org.el simple.el vc.el vhdl-mode.el wdired.el README ada-mode.el
|
||||
allout.el appt.el apropos.el artist.el and 85 other files
|
||||
|
||||
D. E. Evans: changed basic.texi
|
||||
|
||||
|
@ -1477,7 +1475,7 @@ and changed xref.el ruby-mode.el project.el vc-git.el elisp-mode.el
|
|||
etags.el ruby-mode-tests.el js.el vc.el vc-hg.el package.el
|
||||
symref/grep.el dired-aux.el simple.el log-edit.el minibuffer.el
|
||||
progmodes/grep.el ido.el maintaining.texi menu-bar.el package-test.el
|
||||
and 123 other files
|
||||
and 122 other files
|
||||
|
||||
Dmitry Kurochkin: changed isearch.el
|
||||
|
||||
|
@ -1574,8 +1572,8 @@ Eli Zaretskii: wrote [bidirectional display in xdisp.c]
|
|||
and co-wrote help-tests.el
|
||||
and changed xdisp.c display.texi w32.c msdos.c w32fns.c simple.el
|
||||
files.el fileio.c keyboard.c emacs.c w32term.c text.texi dispnew.c
|
||||
w32proc.c files.texi frames.texi configure.ac lisp.h dispextern.h
|
||||
process.c editfns.c and 1232 other files
|
||||
w32proc.c files.texi frames.texi configure.ac dispextern.h lisp.h
|
||||
process.c ms-w32.h and 1235 other files
|
||||
|
||||
Eliza Velasquez: changed server.el
|
||||
|
||||
|
@ -1596,7 +1594,7 @@ Emilio C. Lopes: changed woman.el cmuscheme.el help.el vc.el advice.el
|
|||
and 58 other files
|
||||
|
||||
Emmanuel Briot: wrote xml.el
|
||||
and changed ada-stmt.el
|
||||
and changed ada-mode.el ada-stmt.el ada-prj.el ada-xref.el
|
||||
|
||||
Era Eriksson: changed bibtex.el dired.el json.el ses.el ses.texi shell.el
|
||||
tramp.el tramp.texi
|
||||
|
@ -1763,10 +1761,10 @@ Fabrice Nicol: changed etags.c etags.1
|
|||
Fabrice Niessen: wrote leuven-theme.el
|
||||
and changed org-agenda.el
|
||||
|
||||
Fabrice Popineau: changed w32.c ms-w32.h w32fns.c w32heap.c w32term.c
|
||||
Fabrice Popineau: changed ms-w32.h w32.c w32fns.c w32heap.c w32term.c
|
||||
configure.ac lisp.h unexw32.c buffer.c emacs.c image.c w32heap.h
|
||||
w32proc.c w32term.h INSTALL addsection.c alloc.c dispextern.h
|
||||
emacs-regex.c emacs-x64.manifest emacs-x86.manifest and 25 other files
|
||||
emacs-x64.manifest emacs-x86.manifest etags.c and 24 other files
|
||||
|
||||
Fan Kai: changed esh-arg.el
|
||||
|
||||
|
@ -1821,7 +1819,7 @@ Florian Adamsky: changed recentf.el
|
|||
|
||||
Florian Beck: changed org.el
|
||||
|
||||
Florian Ragwitz: changed gnus-html.el mail/sieve-manage.el
|
||||
Florian Ragwitz: changed gnus-html.el sieve-manage.el
|
||||
|
||||
Florian V. Savigny: changed sql.el
|
||||
|
||||
|
@ -1949,7 +1947,7 @@ and changed edebug.el cl-print.el edebug.texi emacs-lisp/debug.el
|
|||
cl-print-tests.el debugging.texi cl-macs.el edebug-test-code.el subr.el
|
||||
testcases.el testcover.el cl-generic.el ert-x.el eval.c eieio-compat.el
|
||||
elisp.texi ert.el ert.texi eval-tests.el generator.el print.c
|
||||
and 24 other files
|
||||
and 23 other files
|
||||
|
||||
Geoff Gole: changed align.el ibuffer.el whitespace.el
|
||||
|
||||
|
@ -1960,9 +1958,9 @@ Geoff Kuenning: changed gnus-art.el gnus.texi
|
|||
Geoff Voelker: wrote ms-w32.h w32-fns.el w32.c w32.h w32heap.c w32heap.h
|
||||
w32inevt.c w32proc.c w32term.c
|
||||
and changed makefile.nt w32fns.c fileio.c makefile.def callproc.c
|
||||
s/ms-w32.h emacs.bat.in unexw32.c w32term.h dos-w32.el loadup.el
|
||||
w32-win.el emacs.c keyboard.c ntterm.c process.c w32console.c addpm.c
|
||||
cmdproxy.c comint.el files.el and 100 other files
|
||||
emacs.bat.in unexw32.c w32term.h dos-w32.el loadup.el w32-win.el
|
||||
emacs.c keyboard.c ntterm.c process.c w32console.c addpm.c cmdproxy.c
|
||||
comint.el files.el sysdep.c and 97 other files
|
||||
|
||||
Georg C. F. Greve: changed pgg-gpg.el
|
||||
|
||||
|
@ -1980,7 +1978,7 @@ Gerd Möllmann: wrote authors.el ebrowse.el jit-lock.el tooltip.el
|
|||
and changed xdisp.c xterm.c dispnew.c dispextern.h xfns.c xfaces.c
|
||||
window.c keyboard.c lisp.h faces.el alloc.c buffer.c startup.el xterm.h
|
||||
fns.c simple.el term.c configure.ac frame.c xmenu.c emacs.c
|
||||
and 607 other files
|
||||
and 610 other files
|
||||
|
||||
Gergely Nagy: changed erc.el
|
||||
|
||||
|
@ -2008,7 +2006,7 @@ and changed configure.ac Makefile.in src/Makefile.in calendar.el
|
|||
lisp/Makefile.in diary-lib.el files.el make-dist rmail.el
|
||||
progmodes/f90.el bytecomp.el admin.el misc/Makefile.in simple.el
|
||||
authors.el startup.el emacs.texi lib-src/Makefile.in display.texi
|
||||
ack.texi subr.el and 1790 other files
|
||||
ack.texi subr.el and 1789 other files
|
||||
|
||||
Glynn Clements: wrote gamegrid.el snake.el tetris.el
|
||||
|
||||
|
@ -2232,7 +2230,7 @@ Ilya Shlyakhter: changed org.el ob-lilypond.el org-clock.el
|
|||
Ilya Zakharevich: wrote tmm.el
|
||||
and co-wrote cperl-mode.el
|
||||
and changed w32fns.c syntax.c intervals.c syntax.h textprop.c dired.c
|
||||
emacs-regex.c emacs-regex.h font-lock.el intervals.h search.c
|
||||
font-lock.el intervals.h regex-emacs.c regex-emacs.h search.c
|
||||
|
||||
Ilya Zonov: changed org-mouse.el
|
||||
|
||||
|
@ -2276,7 +2274,8 @@ Itai Y. Efrat: changed browse-url.el
|
|||
Itai Zukerman: changed mm-decode.el
|
||||
|
||||
Ivan Andrus: changed editfns.c epg.el ffap.el find-file.el ibuf-ext.el
|
||||
ibuffer.el newcomment.el nxml-mode.el progmodes/python.el
|
||||
ibuffer.el newcomment.el nextstep/templates/Info.plist.in nxml-mode.el
|
||||
progmodes/python.el
|
||||
|
||||
Ivan Boldyrev: changed mml1991.el
|
||||
|
||||
|
@ -2456,7 +2455,7 @@ Jason Rumney: wrote w32-vars.el
|
|||
and changed w32fns.c w32term.c w32font.c w32menu.c w32-win.el w32term.h
|
||||
w32.c w32uniscribe.c w32-fns.el makefile.nt w32console.c w32bdf.c
|
||||
configure.bat keyboard.c w32proc.c w32select.c font.c image.c w32font.h
|
||||
w32gui.h xdisp.c and 153 other files
|
||||
w32gui.h xdisp.c and 152 other files
|
||||
|
||||
Jason S. Cornez: changed keyboard.c
|
||||
|
||||
|
@ -2573,8 +2572,8 @@ Jesper Harder: wrote yenc.el
|
|||
and changed gnus-sum.el gnus-art.el message.el gnus-group.el gnus-msg.el
|
||||
gnus.el gnus-util.el rfc2047.el mm-bodies.el mm-util.el mml.el
|
||||
mm-decode.el nnrss.el gnus-srvr.el gnus-topic.el nnmail.el
|
||||
gnus-start.el gnus-uu.el spam-stat.el gnus-score.el gnus.texi
|
||||
and 202 other files
|
||||
gnus-start.el gnus-uu.el gnus.texi spam-stat.el gnus-score.el
|
||||
and 200 other files
|
||||
|
||||
Jhair Tocancipa Triana: changed gnus-audio.el
|
||||
|
||||
|
@ -2610,10 +2609,10 @@ Jimmy Yuen Ho Wong: changed nsm.el gnutls.c gnutls.el disass.el
|
|||
Jim Paris: changed process.c
|
||||
|
||||
Jim Porter: changed delsel.el ansi-color-tests.el ansi-color.el
|
||||
bindings.el term-tests.el term.el tramp.el callproc.c
|
||||
dichromacy-theme.el diff-mode.el files-tests.el gdb-mi.el grep-tests.el
|
||||
ispell.el leuven-theme.el man.el menu-bar.el misterioso-theme.el
|
||||
process.c process.h progmodes/grep.el and 6 other files
|
||||
bindings.el esh-var.el term-tests.el term.el tramp.el callproc.c
|
||||
dichromacy-theme.el diff-mode.el eshell-tests.el eshell.texi
|
||||
files-tests.el gdb-mi.el grep-tests.el ispell.el leuven-theme.el man.el
|
||||
menu-bar.el misterioso-theme.el and 9 other files
|
||||
|
||||
Jim Radford: changed gnus-start.el
|
||||
|
||||
|
@ -2796,7 +2795,7 @@ and changed epa.el epa-file.el lisp-mnt.el tips.texi dired-aux.el
|
|||
dired-x.el dired.el eieio.el epa-dired.el font-lock.el
|
||||
progmodes/compile.el simple.el allout.el button.el comint.el
|
||||
cus-edit.el eldoc.el emacs-module-tests.el epa-hook.el epg-config.el
|
||||
epg.el and 9 other files
|
||||
epg.el and 11 other files
|
||||
|
||||
Jonas Hoersch: changed org-inlinetask.el org.el
|
||||
|
||||
|
@ -2858,7 +2857,7 @@ Jorge P. De Morais Neto: changed TUTORIAL cl.texi
|
|||
|
||||
Jose A. Ortega Ruiz: changed mixal-mode.el gnus-sum.el url-http.el
|
||||
|
||||
Jose E. Marchesi: changed gomoku.el simple.el smtpmail.el
|
||||
Jose E. Marchesi: changed ada-mode.el gomoku.el simple.el smtpmail.el
|
||||
|
||||
José L. Doménech: changed dired-aux.el
|
||||
|
||||
|
@ -2903,7 +2902,7 @@ and co-wrote help-tests.el keymap-tests.el
|
|||
and changed subr.el desktop.el w32fns.c faces.el simple.el emacsclient.c
|
||||
files.el server.el bs.el help-fns.el xdisp.c org.el w32term.c w32.c
|
||||
buffer.c keyboard.c ido.el image.c window.c eval.c allout.el
|
||||
and 1226 other files
|
||||
and 1225 other files
|
||||
|
||||
Juan Pechiar: changed ob-octave.el
|
||||
|
||||
|
@ -2926,7 +2925,7 @@ Julien Danjou: wrote erc-desktop-notifications.el gnus-gravatar.el
|
|||
and co-wrote color.el
|
||||
and changed shr.el org-agenda.el gnus-art.el nnimap.el gnus-html.el
|
||||
gnus.el message.el gnus-group.el gnus-sum.el gnus-util.el mm-decode.el
|
||||
mm-view.el org.el gnus.texi mail/sieve-manage.el nnir.el mm-uu.el
|
||||
mm-view.el org.el gnus.texi nnir.el sieve-manage.el mm-uu.el
|
||||
color-lab.el gnus-demon.el gnus-int.el gnus-msg.el and 96 other files
|
||||
|
||||
Julien Gilles: wrote gnus-ml.el
|
||||
|
@ -2950,7 +2949,7 @@ Juri Linkov: wrote compose.el files-x.el misearch.el repeat-tests.el
|
|||
and changed isearch.el simple.el info.el replace.el dired.el dired-aux.el
|
||||
progmodes/grep.el subr.el window.el image-mode.el mouse.el diff-mode.el
|
||||
files.el menu-bar.el minibuffer.el progmodes/compile.el startup.el
|
||||
faces.el vc.el display.texi search.texi and 444 other files
|
||||
faces.el vc.el display.texi search.texi and 445 other files
|
||||
|
||||
Jussi Lahdenniemi: changed w32fns.c ms-w32.h msdos.texi w32.c w32.h
|
||||
w32console.c w32heap.c w32inevt.c w32term.h
|
||||
|
@ -3018,7 +3017,7 @@ and changed simple.el files.el CONTRIBUTE doc-view.el image-mode.el
|
|||
Karl Heuer: changed keyboard.c lisp.h xdisp.c buffer.c xfns.c xterm.c
|
||||
alloc.c files.el frame.c configure.ac window.c data.c minibuf.c
|
||||
editfns.c fns.c process.c Makefile.in fileio.c simple.el keymap.c
|
||||
indent.c and 446 other files
|
||||
indent.c and 447 other files
|
||||
|
||||
Karl Kleinpaste: changed gnus-sum.el gnus-art.el gnus-picon.el
|
||||
gnus-score.el gnus-uu.el gnus-xmas.el gnus.el mm-uu.el mml.el nnmail.el
|
||||
|
@ -3048,7 +3047,7 @@ Katsumi Yamaoka: wrote canlock.el
|
|||
and changed gnus-art.el gnus-sum.el message.el mm-decode.el gnus.texi
|
||||
mm-util.el mm-view.el gnus-group.el gnus-util.el gnus-msg.el mml.el
|
||||
shr.el rfc2047.el gnus-start.el gnus.el nntp.el gnus-agent.el nnrss.el
|
||||
mm-uu.el nnmail.el emacs-mime.texi and 161 other files
|
||||
mm-uu.el nnmail.el emacs-mime.texi and 159 other files
|
||||
|
||||
Kaushal Modi: changed dired-aux.el files.el isearch.el apropos.el
|
||||
calc-yank.el custom.texi desktop.el dired.el dired.texi ediff-diff.el
|
||||
|
@ -3062,7 +3061,7 @@ Kaveh R. Ghazi: changed delta88k.h xterm.c
|
|||
Kayvan Sylvan: changed supercite.el
|
||||
|
||||
Kazuhiro Ito: changed coding.c uudecode.el flow-fill.el font.c
|
||||
japan-util.el keyboard.c make-mode.el net/starttls.el xdisp.c
|
||||
japan-util.el keyboard.c make-mode.el starttls.el xdisp.c
|
||||
|
||||
Kazushi Marukawa: changed filelock.c hexl.c profile.c unexalpha.c
|
||||
|
||||
|
@ -3147,7 +3146,7 @@ and changed edt.texi
|
|||
Kevin Gallo: wrote w32-win.el
|
||||
and changed makefile.nt dispnew.c addpm.c config.w95 dispextern.h emacs.c
|
||||
facemenu.el faces.el fns.c frame.c frame.h keyboard.c makefile.def
|
||||
mouse.el ntterm.c process.c s/ms-w32.h scroll.c startup.el sysdep.c
|
||||
mouse.el ms-w32.h ntterm.c process.c scroll.c startup.el sysdep.c
|
||||
term.c and 18 other files
|
||||
|
||||
Kevin Greiner: wrote legacy-gnus-agent.el
|
||||
|
@ -3182,7 +3181,7 @@ Kim F. Storm: wrote bindat.el cua-base.el cua-gmrk.el cua-rect.el ido.el
|
|||
and changed xdisp.c dispextern.h process.c simple.el window.c keyboard.c
|
||||
xterm.c dispnew.c subr.el w32term.c lisp.h fringe.c display.texi
|
||||
macterm.c alloc.c fns.c xfaces.c keymap.c xfns.c xterm.h .gdbinit
|
||||
and 248 other files
|
||||
and 249 other files
|
||||
|
||||
Kimit Yada: changed copyright.el
|
||||
|
||||
|
@ -3221,10 +3220,10 @@ Konrad Hinsen: wrote ol-eshell.el
|
|||
and changed ob-python.el
|
||||
|
||||
Konstantin Kharlamov: changed smerge-mode.el diff-mode.el files.el
|
||||
autorevert.el calc-aent.el calc-ext.el calc-lang.el cc-mode.el
|
||||
cperl-mode.el css-mode.el cua-rect.el dnd.el ebnf-abn.el ebnf-dtd.el
|
||||
ebnf-ebx.el emacs-module-tests.el epg.el faces.el gnus-art.el gtkutil.c
|
||||
hideif.el and 26 other files
|
||||
ada-mode.el autorevert.el calc-aent.el calc-ext.el calc-lang.el
|
||||
cc-mode.el cperl-mode.el css-mode.el cua-rect.el dnd.el ebnf-abn.el
|
||||
ebnf-dtd.el ebnf-ebx.el emacs-module-tests.el epg.el faces.el
|
||||
gnus-art.el gtkutil.c and 27 other files
|
||||
|
||||
Konstantin Kliakhandler: changed org-agenda.el
|
||||
|
||||
|
@ -3306,8 +3305,8 @@ and co-wrote gnus-kill.el gnus-mh.el gnus-msg.el gnus-score.el
|
|||
rfc2047.el svg.el time-date.el
|
||||
and changed gnus.texi simple.el subr.el files.el process.c text.texi
|
||||
display.texi dired.el gnutls.c gnus-ems.el smtpmail.el help-fns.el
|
||||
auth-source.el url-http.el edebug.el gnus-cite.el image.el pop3.el
|
||||
dired-aux.el fns.c image.c and 860 other files
|
||||
auth-source.el url-http.el edebug.el image.el gnus-cite.el pop3.el
|
||||
dired-aux.el fns.c image.c and 859 other files
|
||||
|
||||
Lars Rasmusson: changed ebrowse.c
|
||||
|
||||
|
@ -3337,11 +3336,11 @@ Lele Gaifax: changed TUTORIAL.it progmodes/python.el flymake.el
|
|||
python-tests.el flymake-proc.el flymake.texi isearch.el
|
||||
|
||||
Lennart Borgman: co-wrote ert-x.el
|
||||
and changed nxml-mode.el tutorial.el re-builder.el window.el buff-menu.el
|
||||
emacs-lisp/debug.el emacsclient.c filesets.el flymake.el help-fns.el
|
||||
isearch.el linum.el lisp-mode.el lisp.el mouse.el progmodes/grep.el
|
||||
recentf.el remember.el replace.el reveal.el ruby-mode.el
|
||||
and 5 other files
|
||||
and changed nxml-mode.el tutorial.el re-builder.el window.el ada-xref.el
|
||||
buff-menu.el emacs-lisp/debug.el emacsclient.c filesets.el flymake.el
|
||||
help-fns.el isearch.el linum.el lisp-mode.el lisp.el mouse.el
|
||||
progmodes/grep.el recentf.el remember.el replace.el reveal.el
|
||||
and 6 other files
|
||||
|
||||
Lennart Staflin: changed dired.el diary-ins.el diary-lib.el tq.el xdisp.c
|
||||
|
||||
|
@ -3379,6 +3378,8 @@ Liang Wang: changed etags.el
|
|||
|
||||
Liāu, Kiong-Gē 廖宮毅: changed comp.c mingw-cfg.site
|
||||
|
||||
Lin Zhou: changed w32fns.c w32term.h
|
||||
|
||||
Lixin Chin: changed bibtex.el
|
||||
|
||||
Lloyd Zusman: changed mml.el pgg-gpg.el
|
||||
|
@ -3428,7 +3429,7 @@ Lute Kamstra: changed modes.texi emacs-lisp/debug.el generic-x.el
|
|||
generic.el font-lock.el simple.el subr.el battery.el debugging.texi
|
||||
easy-mmode.el elisp.texi emacs-lisp/generic.el hl-line.el info.el
|
||||
octave.el basic.texi bindings.el calc.el cmdargs.texi diff-mode.el
|
||||
doclicense.texi and 288 other files
|
||||
doclicense.texi and 289 other files
|
||||
|
||||
Lynn Slater: wrote help-macro.el
|
||||
|
||||
|
@ -3550,7 +3551,7 @@ Mark Oteiza: wrote mailcap-tests.el md4-tests.el xdg-tests.el xdg.el
|
|||
and changed image-dired.el dunnet.el mpc.el eww.el json.el calc-units.el
|
||||
lcms.c subr-x.el subr.el message.el tex-mode.el cl-macs.el cl.texi
|
||||
ibuffer.el lcms-tests.el mailcap.el progmodes/python.el cl-print.el
|
||||
eldoc.el emacs-lisp/chart.el files.el and 173 other files
|
||||
eldoc.el emacs-lisp/chart.el files.el and 172 other files
|
||||
|
||||
Mark Plaksin: changed nnrss.el term.el
|
||||
|
||||
|
@ -3573,7 +3574,7 @@ and changed cus-edit.el files.el progmodes/compile.el rmail.el
|
|||
tex-mode.el find-func.el rmailsum.el simple.el cus-dep.el dired.el
|
||||
mule-cmds.el rmailout.el checkdoc.el configure.ac custom.el emacsbug.el
|
||||
gnus.el help-fns.el ls-lisp.el mwheel.el sendmail.el
|
||||
and 125 other files
|
||||
and 126 other files
|
||||
|
||||
Markus Sauermann: changed lisp-mode.el
|
||||
|
||||
|
@ -3618,7 +3619,7 @@ Martin Pohlack: changed iimage.el pc-select.el
|
|||
Martin Rudalics: changed window.el window.c windows.texi frame.c xdisp.c
|
||||
xterm.c frames.texi w32fns.c w32term.c xfns.c frame.el display.texi
|
||||
frame.h cus-start.el help.el buffer.c window.h mouse.el dispnew.c
|
||||
nsfns.m gtkutil.c and 212 other files
|
||||
nsfns.m gtkutil.c and 213 other files
|
||||
|
||||
Martin Stjernholm: wrote cc-bytecomp.el
|
||||
and co-wrote cc-align.el cc-cmds.el cc-compat.el cc-defs.el cc-engine.el
|
||||
|
@ -3775,7 +3776,7 @@ and co-wrote tramp-cache.el tramp-sh.el tramp.el
|
|||
and changed tramp.texi tramp-adb.el trampver.el trampver.texi dbusbind.c
|
||||
files.el ange-ftp.el file-notify-tests.el files.texi dbus.texi
|
||||
autorevert.el tramp-fish.el kqueue.c tramp-gw.el os.texi shell.el
|
||||
tramp-imap.el gitlab-ci.yml lisp.h README xesam.el and 280 other files
|
||||
tramp-imap.el gitlab-ci.yml lisp.h README xesam.el and 278 other files
|
||||
|
||||
Michael Ben-Gershon: changed acorn.h configure.ac riscix1-1.h riscix1-2.h
|
||||
unexec.c
|
||||
|
@ -3878,8 +3879,8 @@ Michael Staats: wrote pc-select.el
|
|||
Michael Vehrs: changed quail.el woman.el
|
||||
|
||||
Michael Welsh Duggan: changed nnimap.el lisp.h sh-script.el w32term.c
|
||||
buffer.c gnus-spec.el gud.el keyboard.c mail/sieve-manage.el nnir.el
|
||||
nnmail.el print.c termhooks.h url-http.el w32-win.el w32fns.c w32menu.c
|
||||
buffer.c gnus-spec.el gud.el keyboard.c nnir.el nnmail.el print.c
|
||||
sieve-manage.el termhooks.h url-http.el w32-win.el w32fns.c w32menu.c
|
||||
w32term.h woman.el xdisp.c xterm.c
|
||||
|
||||
Michael Weylandt: changed ox-latex.el
|
||||
|
@ -3897,11 +3898,11 @@ Michał Krzywkowski: changed elide-head.el
|
|||
Michal Nazarewicz: wrote cc-mode-tests.el descr-text-tests.el
|
||||
tildify-tests.el
|
||||
and co-wrote tildify.el
|
||||
and changed emacs-regex.c casefiddle.c simple.el
|
||||
test/src/regex-emacs-tests.el casefiddle-tests.el emacs-regex.h
|
||||
message.el search.c buffer.h cc-mode.el cc-mode.texi ert-x.el files.el
|
||||
frame.c remember.el sgml-mode.el unidata-gen.el README
|
||||
SpecialCasing.txt bindings.el buffer.c and 41 other files
|
||||
and changed regex-emacs.c casefiddle.c regex-emacs-tests.el simple.el
|
||||
casefiddle-tests.el message.el regex-emacs.h search.c buffer.h
|
||||
cc-mode.el cc-mode.texi ert-x.el files.el frame.c remember.el
|
||||
sgml-mode.el unidata-gen.el README SpecialCasing.txt bindings.el
|
||||
buffer.c and 41 other files
|
||||
|
||||
Michal Nowak: changed gnutls.el
|
||||
|
||||
|
@ -3977,7 +3978,7 @@ Miles Bader: wrote button.el face-remap.el image-file.el macroexp.el
|
|||
and changed comint.el faces.el simple.el editfns.c xfaces.c xdisp.c
|
||||
info.el minibuf.c display.texi quick-install-emacs wid-edit.el xterm.c
|
||||
dispextern.h subr.el window.el cus-edit.el diff-mode.el xfns.c
|
||||
bytecomp.el help.el lisp.h and 271 other files
|
||||
bytecomp.el help.el lisp.h and 272 other files
|
||||
|
||||
Milton Wulei: changed gdb-ui.el
|
||||
|
||||
|
@ -4168,7 +4169,7 @@ Nils Ackermann: changed message.el nnmh.el reftex-vars.el
|
|||
|
||||
Nitish Chinta: changed progmodes/python.el sendmail.el simple.el
|
||||
|
||||
N. Jackson: changed emacs.texi forms.texi os.texi
|
||||
N. Jackson: changed emacs.texi forms.texi gnus.info os.texi
|
||||
|
||||
Noah Evans: changed follow.el
|
||||
|
||||
|
@ -4187,7 +4188,7 @@ Noam Postavsky: changed progmodes/python.el lisp-mode.el bytecomp.el
|
|||
lisp-mode-tests.el term.el xdisp.c cl-macs.el eval.c simple.el data.c
|
||||
emacs-lisp/debug.el modes.texi help-fns.el subr.el elisp-mode.el ert.el
|
||||
isearch.el processes.texi search.c cl-print.el diff-mode.el
|
||||
and 363 other files
|
||||
and 362 other files
|
||||
|
||||
Nobuyoshi Nakada: co-wrote ruby-mode.el
|
||||
and changed ruby-mode-tests.el
|
||||
|
@ -4307,7 +4308,7 @@ and co-wrote cal-dst.el
|
|||
and changed lisp.h configure.ac alloc.c fileio.c process.c editfns.c
|
||||
sysdep.c xdisp.c fns.c image.c keyboard.c data.c emacs.c lread.c
|
||||
xterm.c eval.c gnulib-comp.m4 callproc.c Makefile.in frame.c buffer.c
|
||||
and 1854 other files
|
||||
and 1849 other files
|
||||
|
||||
Paul Fisher: changed fns.c
|
||||
|
||||
|
@ -4333,7 +4334,7 @@ Paul Reilly: changed dgux.h lwlib-Xm.c lwlib.c xlwmenu.c configure.ac
|
|||
lwlib/Makefile.in mail/rmailmm.el rmailedit.el rmailkwd.el
|
||||
and 10 other files
|
||||
|
||||
Paul Rivier: changed mixal-mode.el reftex-vars.el reftex.el
|
||||
Paul Rivier: changed ada-mode.el mixal-mode.el reftex-vars.el reftex.el
|
||||
|
||||
Paul Rubin: changed config.h sun2.h texinfmt.el window.c
|
||||
|
||||
|
@ -4354,7 +4355,7 @@ Pavel Janík: co-wrote eudc-bob.el eudc-export.el eudc-hotlist.el
|
|||
and changed keyboard.c xterm.c COPYING xdisp.c process.c emacs.c lisp.h
|
||||
menu-bar.el ldap.el make-dist xfns.c buffer.c coding.c eval.c fileio.c
|
||||
flyspell.el fns.c indent.c Makefile.in callint.c cus-start.el
|
||||
and 699 other files
|
||||
and 702 other files
|
||||
|
||||
Pavel Kobiakov: wrote flymake-proc.el flymake.el
|
||||
and changed flymake.texi
|
||||
|
@ -4508,9 +4509,9 @@ Philipp Stephani: wrote callint-tests.el checkdoc-tests.el
|
|||
cl-preloaded-tests.el ediff-diff-tests.el eval-tests.el ido-tests.el
|
||||
lread-tests.el mouse-tests.el startup-tests.el xt-mouse-tests.el
|
||||
and changed emacs-module.c emacs-module-tests.el configure.ac json.c
|
||||
process.c eval.c json-tests.el process-tests.el internals.texi alloc.c
|
||||
process.c eval.c internals.texi json-tests.el process-tests.el alloc.c
|
||||
emacs-module.h.in emacs.c lread.c nsterm.m lisp.h pdumper.c bytecomp.el
|
||||
callproc.c seccomp-filter.c gtkutil.c files.el and 179 other files
|
||||
callproc.c seccomp-filter.c gtkutil.c files.el and 184 other files
|
||||
|
||||
Phillip Lord: wrote ps-print-tests.el w32-feature.el
|
||||
and changed build-zips.sh build-dep-zips.py lisp/Makefile.in undo.c
|
||||
|
@ -4567,6 +4568,7 @@ and changed xdisp.c comp.c fns.c pdumper.c alloc.c byte-opt.el
|
|||
Po Lu: changed xdisp.c browse-url.el callproc.c cc-compat.el config.bat
|
||||
esh-cmd.el fileio.c langinfo.h loadup.el msdos.c msdos.h nsfns.m
|
||||
nsterm.m process.c sed1v2.inp sed2v2.inp sed3v2.inp sedlibmk.inp
|
||||
tooltip.el xterm.c
|
||||
|
||||
Pontus Michael: changed simple.el
|
||||
|
||||
|
@ -4662,7 +4664,7 @@ Reiner Steib: wrote gmm-utils.el
|
|||
and changed message.el gnus.texi gnus-art.el gnus-sum.el gnus-group.el
|
||||
gnus.el mml.el gnus-faq.texi mm-util.el gnus-score.el message.texi
|
||||
gnus-msg.el gnus-start.el gnus-util.el spam-report.el mm-uu.el spam.el
|
||||
mm-decode.el files.el gnus-agent.el nnmail.el and 172 other files
|
||||
mm-decode.el files.el gnus-agent.el nnmail.el and 171 other files
|
||||
|
||||
Remek Trzaska: changed gnus-ems.el
|
||||
|
||||
|
@ -4682,8 +4684,9 @@ and changed vhdl-mode.texi
|
|||
|
||||
Reuben Thomas: changed ispell.el whitespace.el dired-x.el files.el
|
||||
sh-script.el emacsclient-tests.el remember.el README emacsclient.c
|
||||
misc.texi msdos.c simple.el INSTALL alloc.c arc-mode.el authors.el
|
||||
config.bat copyright dired-x.texi dired.el dosfns.c and 35 other files
|
||||
misc.texi msdos.c simple.el INSTALL ada-mode.el ada-xref.el alloc.c
|
||||
arc-mode.el authors.el config.bat copyright dired-x.texi
|
||||
and 37 other files
|
||||
|
||||
Ricardo Wurmus: changed xwidget.el xwidget.c configure.ac xwidget.h
|
||||
|
||||
|
@ -4776,7 +4779,7 @@ Robert Pluim: wrote nsm-tests.el
|
|||
and changed configure.ac process.c blocks.awk network-stream-tests.el
|
||||
font.c processes.texi ftfont.c gtkutil.c vc-git.el process-tests.el
|
||||
emoji-zwj.awk gnutls.el network-stream.el nsm.el tramp.texi mml-sec.el
|
||||
nsterm.m unicode xfns.c auth.texi composite.c and 134 other files
|
||||
nsterm.m unicode xfns.c auth.texi composite.c and 135 other files
|
||||
|
||||
Robert Thorpe: changed cus-start.el indent.el rmail.texi
|
||||
|
||||
|
@ -4844,9 +4847,10 @@ Roy Liu: changed ns-win.el
|
|||
|
||||
Rüdiger Sonderfeld: wrote inotify-tests.el reftex-tests.el
|
||||
and changed eww.el octave.el shr.el bibtex.el configure.ac
|
||||
misc/Makefile.in reftex-vars.el vc-git.el TUTORIAL.de autoinsert.el
|
||||
building.texi bytecomp.el calc-lang.el cc-langs.el dired.texi editfns.c
|
||||
emacs.c emacs.texi epa.el erc.el eww.texi and 39 other files
|
||||
misc/Makefile.in reftex-vars.el vc-git.el TUTORIAL.de ada-mode.el
|
||||
autoinsert.el building.texi bytecomp.el calc-lang.el cc-langs.el
|
||||
dired.texi editfns.c emacs.c emacs.texi epa.el erc.el
|
||||
and 40 other files
|
||||
|
||||
Rui-Tao Dong: changed nnweb.el
|
||||
|
||||
|
@ -4905,7 +4909,7 @@ Sam Steingold: wrote gulp.el midnight.el
|
|||
and changed progmodes/compile.el cl-indent.el simple.el vc-cvs.el vc.el
|
||||
mouse.el vc-hg.el etags.el files.el font-lock.el tex-mode.el
|
||||
ange-ftp.el gnus-sum.el message.el sgml-mode.el vc-git.el window.el
|
||||
add-log.el bindings.el bookmark.el bug-reference.el and 186 other files
|
||||
add-log.el bindings.el bookmark.el bug-reference.el and 188 other files
|
||||
|
||||
Samuel Bronson: changed custom.el emacsclient.c keyboard.c
|
||||
progmodes/grep.el semantic/format.el unexmacosx.c
|
||||
|
@ -5009,8 +5013,9 @@ Sébastien Vauban: changed org.el org-agenda.el ox-latex.el ob-core.el
|
|||
org-clock.el ox-ascii.el ox-html.el
|
||||
|
||||
Seiji Zenitani: changed nsfns.m frame.c xterm.c PkgInfo document.icns
|
||||
find-func.el frame.h help-fns.el macfns.c nsfont.m nsterm.m w32fns.c
|
||||
xdisp.c xfns.c
|
||||
find-func.el frame.h help-fns.el macfns.c
|
||||
nextstep/templates/Info.plist.in nsfont.m nsterm.m w32fns.c xdisp.c
|
||||
xfns.c
|
||||
|
||||
Sen Nagata: wrote crm.el rfc2368.el
|
||||
|
||||
|
@ -5032,6 +5037,7 @@ Sergey Poznyakoff: changed rmail.el mh-mime.el rmail.texi smtpmail.el
|
|||
Sergey Trofimov: changed window.el
|
||||
|
||||
Sergey Vinokurov: changed emacs-module-tests.el emacs-module.c
|
||||
memory-report.el
|
||||
|
||||
Sergio Durigan Junior: changed eudcb-bbdb.el gdb-mi.el
|
||||
|
||||
|
@ -5113,9 +5119,8 @@ and co-wrote gnus-sieve.el gssapi.el mml1991.el nnfolder.el nnimap.el
|
|||
nnml.el rot13.el sieve-manage.el
|
||||
and changed message.el gnus-sum.el gnus-art.el smtpmail.el pgg-gpg.el
|
||||
pgg.el gnus-agent.el mml2015.el mml.el gnus-group.el mm-decode.el
|
||||
gnus-msg.el gnus.texi mail/sieve-manage.el pgg-pgp5.el browse-url.el
|
||||
gnus-int.el gnus.el hashcash.el mm-view.el password.el
|
||||
and 101 other files
|
||||
gnus-msg.el gnus.texi pgg-pgp5.el browse-url.el gnus-int.el gnus.el
|
||||
hashcash.el mm-view.el password.el gnus-cache.el and 99 other files
|
||||
|
||||
Simon Lang: changed building.texi icomplete.el misterioso-theme.el
|
||||
progmodes/grep.el
|
||||
|
@ -5170,7 +5175,7 @@ and co-wrote help-tests.el keymap-tests.el
|
|||
and changed efaq.texi checkdoc.el package.el cperl-mode.el bookmark.el
|
||||
help.el keymap.c subr.el simple.el erc.el ediff-util.el idlwave.el
|
||||
time.el bytecomp-tests.el comp.el speedbar.el bytecomp.el edebug.el
|
||||
emacs-lisp-intro.texi flyspell.el ibuffer.el and 1337 other files
|
||||
emacs-lisp-intro.texi flyspell.el ibuffer.el and 1334 other files
|
||||
|
||||
Stefan Merten: co-wrote rst.el
|
||||
|
||||
|
@ -5187,7 +5192,7 @@ and co-wrote font-lock.el gitmerge.el pcvs.el
|
|||
and changed subr.el simple.el keyboard.c bytecomp.el cl-macs.el files.el
|
||||
lisp.h vc.el xdisp.c alloc.c eval.c sh-script.el progmodes/compile.el
|
||||
keymap.c buffer.c window.c tex-mode.el lisp-mode.el newcomment.el
|
||||
help-fns.el lread.c and 1616 other files
|
||||
help-fns.el lread.c and 1615 other files
|
||||
|
||||
Stefano Facchini: changed gtkutil.c
|
||||
|
||||
|
@ -5247,11 +5252,11 @@ and changed time-stamp.el time-stamp-tests.el mh-e.el mh-junk.el
|
|||
Stephen J. Turnbull: changed ediff-init.el strings.texi subr.el
|
||||
|
||||
Stephen Leake: wrote elisp-mode-tests.el
|
||||
and changed elisp-mode.el xref.el window.el mode-local.el CONTRIBUTE
|
||||
project.el vc-mtn.el ada-stmt.el cedet-global.el ede/generic.el
|
||||
simple.el autoload.el bytecomp.el cl-generic.el ede/locate.el
|
||||
files.texi functions.texi package.el progmodes/grep.el windows.texi
|
||||
INSTALL.REPO and 32 other files
|
||||
and changed ada-mode.el ada-xref.el elisp-mode.el xref.el window.el
|
||||
mode-local.el CONTRIBUTE ada-prj.el project.el vc-mtn.el ada-stmt.el
|
||||
cedet-global.el ede/generic.el simple.el autoload.el bytecomp.el
|
||||
cl-generic.el ede/locate.el files.texi functions.texi package.el
|
||||
and 35 other files
|
||||
|
||||
Stephen Pegoraro: changed xterm.c
|
||||
|
||||
|
@ -5335,10 +5340,9 @@ Svante Carl V. Erichsen: changed cl-indent.el
|
|||
Svend Tollak Munkejord: changed deuglify.el
|
||||
|
||||
Sven Joachim: changed files.el de-refcard.tex dired-aux.el emacs.1
|
||||
arc-mode.el dired-x.el doc/misc/gnus.texi em-cmpl.el em-hist.el
|
||||
em-ls.el esh-cmd.el esh-ext.el esh-io.el files.texi gnus-sum.el
|
||||
gnus.texi help.el make-dist message.el movemail.c mule.texi
|
||||
and 9 other files
|
||||
gnus.texi arc-mode.el dired-x.el em-cmpl.el em-hist.el em-ls.el
|
||||
esh-cmd.el esh-ext.el esh-io.el files.texi gnus-sum.el help.el
|
||||
make-dist message.el movemail.c mule.texi sed3v2.inp and 8 other files
|
||||
|
||||
Sylvain Chouleur: changed gnus-icalendar.el icalendar.el
|
||||
|
||||
|
@ -5365,7 +5369,7 @@ Takahashi Naoto: wrote ethio-util.el language/ethiopic.el latin-post.el
|
|||
and co-wrote latin-ltx.el quail.el
|
||||
and changed ethiopic.el fontset.el mule-conf.el
|
||||
|
||||
Takai Kousuke: changed ccl.el image/compface.el
|
||||
Takai Kousuke: changed ccl.el compface.el
|
||||
|
||||
Takeshi Yamada: changed fns.c
|
||||
|
||||
|
@ -5442,7 +5446,7 @@ and co-wrote hideshow.el
|
|||
and changed ewoc.el vc.el info.el processes.texi zone.el lisp-mode.el
|
||||
scheme.el text.texi vc-rcs.el display.texi fileio.c files.el vc-git.el
|
||||
TUTORIAL.it bindat.el cc-vars.el configure.ac dcl-mode.el diff-mode.el
|
||||
dired.el elisp.texi and 168 other files
|
||||
dired.el elisp.texi and 169 other files
|
||||
|
||||
Thierry Banel: co-wrote ob-C.el
|
||||
and changed calc-arith.el
|
||||
|
@ -5470,7 +5474,7 @@ Thomas Dye: changed org.texi org-bibtex.el ob-R.el org.el
|
|||
|
||||
Thomas Fitzsimmons: wrote soap-client.el
|
||||
and changed soap-inspect.el ldap.el eudc.texi eudc-vars.el eudc.el
|
||||
ntlm.el url-http.el eudcb-ldap.el eudcb-bbdb.el ntlm-tests.el
|
||||
ntlm.el url-http.el eudcb-bbdb.el eudcb-ldap.el ntlm-tests.el
|
||||
eudc-bob.el eudc-export.el eudcb-ph.el package.el README authinfo
|
||||
diary-lib.el display.texi eudc-hotlist.el eudcb-macos-contacts.el
|
||||
icalendar.el and 3 other files
|
||||
|
@ -5652,6 +5656,8 @@ Toru Tsuneyoshi: changed ange-ftp.el buff-menu.el cus-start.el fileio.c
|
|||
|
||||
Toshiaki Nomura: changed uxpds.h
|
||||
|
||||
Travis Jeffery: changed nextstep/templates/Info.plist.in
|
||||
|
||||
Trent W. Buck: changed rcirc.el remember.el rx.el
|
||||
|
||||
Trevor Murphy: changed find-dired.el gnus.texi nnimap.el org.el window.el
|
||||
|
@ -5675,8 +5681,8 @@ Tsuchiya Masatoshi: changed gnus-art.el mm-view.el gnus-sum.el
|
|||
|
||||
Tsugutomo Enami: changed frame.c keyboard.c configure.ac dispnew.c
|
||||
fileio.c process.c simple.el sysdep.c xdisp.c add-log.el bytecomp.el
|
||||
editfns.c emacs-regex.c emacs-regex.h emacs.c frame.h gnus-group.el
|
||||
netbsd.h nnheader.el nnimap.el perl-mode.el and 6 other files
|
||||
editfns.c emacs.c frame.h gnus-group.el netbsd.h nnheader.el nnimap.el
|
||||
perl-mode.el regex-emacs.c regex-emacs.h and 6 other files
|
||||
|
||||
Tsuyoshi Akiho: changed gnus-sum.el nnrss.el
|
||||
|
||||
|
|
|
@ -6697,7 +6697,7 @@ Customize all loaded groups matching REGEXP.
|
|||
|
||||
(autoload 'custom-prompt-customize-unsaved-options "cus-edit" "\
|
||||
Prompt user to customize any unsaved customization options.
|
||||
Return non-nil if user chooses to customize, for use in
|
||||
Return nil if user chooses to customize, for use in
|
||||
`kill-emacs-query-functions'." nil nil)
|
||||
|
||||
(autoload 'custom-buffer-create "cus-edit" "\
|
||||
|
@ -13203,7 +13203,7 @@ lines.
|
|||
|
||||
;;;### (autoloads nil "flymake" "progmodes/flymake.el" (0 0 0 0))
|
||||
;;; Generated autoloads from progmodes/flymake.el
|
||||
(push (purecopy '(flymake 1 2 1)) package--builtin-versions)
|
||||
(push (purecopy '(flymake 1 2 2)) package--builtin-versions)
|
||||
|
||||
(autoload 'flymake-log "flymake" "\
|
||||
Log, at level LEVEL, the message MSG formatted with ARGS.
|
||||
|
@ -13365,6 +13365,9 @@ Flyspell mode is a buffer-local minor mode. When enabled, it
|
|||
spawns a single Ispell process and checks each word. The default
|
||||
flyspell behavior is to highlight incorrect words.
|
||||
|
||||
This mode is geared toward text modes. In buffers that contain
|
||||
code, `flyspell-prog-mode' is usually a better choice.
|
||||
|
||||
Bindings:
|
||||
\\[ispell-word]: correct words (using Ispell).
|
||||
\\[flyspell-auto-correct-word]: automatically correct word.
|
||||
|
@ -32437,8 +32440,8 @@ The mode's hook is called both when the mode is enabled and when it is
|
|||
disabled.
|
||||
|
||||
Superword mode is a buffer-local minor mode. Enabling it changes
|
||||
the definition of words such that symbols characters are treated
|
||||
as parts of words: e.g., in `superword-mode',
|
||||
the definition of words such that characters which have symbol
|
||||
syntax are treated as parts of words: e.g., in `superword-mode',
|
||||
\"this_is_a_symbol\" counts as one word.
|
||||
|
||||
\\{superword-mode-map}
|
||||
|
@ -39508,11 +39511,21 @@ Zone out, completely." t nil)
|
|||
;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el"
|
||||
;;;;;; "eshell/em-xtra.el" "faces.el" "files.el" "font-core.el"
|
||||
;;;;;; "font-lock.el" "format.el" "frame.el" "help.el" "hfy-cmap.el"
|
||||
;;;;;; "ibuf-ext.el" "indent.el" "international/characters.el" "international/charscript.el"
|
||||
;;;;;; "international/cp51932.el" "international/emoji-zwj.el" "international/eucjp-ms.el"
|
||||
;;;;;; "ibuf-ext.el" "indent.el" "international/characters.el" "international/charprop.el"
|
||||
;;;;;; "international/charscript.el" "international/cp51932.el"
|
||||
;;;;;; "international/emoji-zwj.el" "international/eucjp-ms.el"
|
||||
;;;;;; "international/iso-transl.el" "international/mule-cmds.el"
|
||||
;;;;;; "international/mule-conf.el" "international/mule.el" "isearch.el"
|
||||
;;;;;; "jit-lock.el" "jka-cmpr-hook.el" "language/burmese.el" "language/cham.el"
|
||||
;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el"
|
||||
;;;;;; "international/uni-brackets.el" "international/uni-category.el"
|
||||
;;;;;; "international/uni-combining.el" "international/uni-comment.el"
|
||||
;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el"
|
||||
;;;;;; "international/uni-digit.el" "international/uni-lowercase.el"
|
||||
;;;;;; "international/uni-mirrored.el" "international/uni-name.el"
|
||||
;;;;;; "international/uni-numeric.el" "international/uni-old-name.el"
|
||||
;;;;;; "international/uni-special-lowercase.el" "international/uni-special-titlecase.el"
|
||||
;;;;;; "international/uni-special-uppercase.el" "international/uni-titlecase.el"
|
||||
;;;;;; "international/uni-uppercase.el" "isearch.el" "jit-lock.el"
|
||||
;;;;;; "jka-cmpr-hook.el" "language/burmese.el" "language/cham.el"
|
||||
;;;;;; "language/chinese.el" "language/cyrillic.el" "language/czech.el"
|
||||
;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el"
|
||||
;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el"
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
/^#undef PACKAGE_NAME/s/^.*$/#define PACKAGE_NAME ""/
|
||||
/^#undef PACKAGE_STRING/s/^.*$/#define PACKAGE_STRING ""/
|
||||
/^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/
|
||||
/^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION "28.0.91"/
|
||||
/^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION "28.0.92"/
|
||||
/^#undef SYSTEM_TYPE/s/^.*$/#define SYSTEM_TYPE "ms-dos"/
|
||||
/^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/
|
||||
/^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Copyright (C) 2001-2022 Free Software Foundation, Inc.
|
||||
See the end of the file for license conditions.
|
||||
|
||||
Emacs version 28.0.91 for MS-Windows
|
||||
Emacs version 28.0.92 for MS-Windows
|
||||
|
||||
This README file describes how to set up and run a precompiled
|
||||
distribution of the latest version of GNU Emacs for MS-Windows. You
|
||||
|
|
Loading…
Add table
Reference in a new issue