summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update HISTORY for Emacs 28.2emacs-28.2Stefan Kangas2022-09-121-0/+2
| | | | * etc/HISTORY: Update for the Emacs 28.2 release.
* Bump Emacs version to 28.2Stefan Kangas2022-09-075-10/+20
| | | | | | | * README: * configure.ac: * msdos/sed2v2.inp: * nt/README.W32: Bump Emacs version to 28.2.
* Update ChangeLog and AUTHORS for Emacs 28.2Stefan Kangas2022-09-073-30/+324
| | | | | | * ChangeLog.3: * etc/AUTHORS: * etc/NEWS: Update for Emacs 28.2.
* * doc/misc/idlwave.texi (Troubleshooting): Don't say "Emacsen".Stefan Kangas2022-09-061-2/+2
|
* ; * doc/emacs/misc.texi (emacsclient Options): Fix typo.Stefan Kangas2022-09-061-1/+1
|
* Don't mention very old Emacs versions in docsStefan Kangas2022-09-063-17/+4
| | | | | | | * doc/misc/mh-e.texi (Conventions): * doc/misc/reftex.texi (Problems and Work-Arounds): * doc/misc/viper.texi (Loading Viper): Delete references to very old versions of Emacs.
* * lisp/server.el: Improve Commentary.Stefan Kangas2022-09-051-20/+21
|
* Explain how the font appearance can be fine-tuned in fbterm.Gregory Heytings2022-09-051-0/+13
| | | | | | * doc/misc/efaq.texi (Emacs in a Linux console): Briefly document Xft font specifications with which the font appearance can be fine-tuned.
* Update to Org 9.5.5Kyle Meyer2022-09-033-4/+4
|
* * lisp/emacs-lisp/comp.el (comp-run-async-workers): Fail more gracefullyStefan Monnier2022-09-031-2/+5
| | | | | | Otherwise Emacs may fail to start if it can't find a writable `~/.emacs.d/eln-cache` directory. Fixes bug#57562. See also Debian's bug #1017739.
* ; Normalize emailStefan Kangas2022-09-031-1/+1
| | | | Don't merge to master.
* Update acknowledgmentsStefan Kangas2022-09-032-16/+21
| | | | | | * doc/emacs/ack.texi (Acknowledgments): Update. * doc/emacs/emacs.texi (Acknowledgments): Add several names from Author: headers.
* Make some versions in docs match package versionStefan Kangas2022-09-015-6/+6
| | | | | | | | * doc/emacs/misc.texi (Interactive Shell): Bump Emacs version. * doc/misc/ediff.texi: * doc/misc/flymake.texi: * doc/misc/viper.texi: Fix version to match package. * lisp/emulation/viper.el: Make version match variable.
* Minor doc fix; improve sorting of VC backendsStefan Kangas2022-09-011-24/+24
| | | | | * doc/emacs/maintaining.texi (Version Control Systems): Minor doc fix; rearrange list to put git, cvs and subversion at the top.
* Clarify the doc string of 'set-face-attribute'Eli Zaretskii2022-09-011-15/+22
| | | | | | * lisp/faces.el (set-face-attribute): Clarify the issue with resetting attribute values to 'unspecified' for future frames. (Bug#57499)
* ; Auto-commit of loaddefs files.Stefan Kangas2022-09-011-2/+2
|
* Enable 256 colors in fbterm.Gregory Heytings2022-08-302-4/+43
| | | | | | | * lisp/term/fbterm.el: New file. * doc/misc/efaq.texi (Emacs in a Linux console): Document the TERM environment variable with which the new file is used.
* One more fix for find-file.elEli Zaretskii2022-08-301-3/+3
| | | | | | * lisp/find-file.el (ff-get-file-name): Use 'expand-file-name' instead of 'concat', which doesn't DTRT with absolute file names. (ff-other-file-alist): Yet another doc fix. (Bug#57325)
* ; Yet another doc fix for 'ff-other-file-alist' (bug#57325)Eli Zaretskii2022-08-301-9/+18
|
* Recommend using fbterm in the Linux console.Gregory Heytings2022-08-292-0/+92
| | | | | | | * doc/misc/efaq.texi (Emacs in a Linux console): New node. (Common requests): Entry for the new node. * etc/PROBLEMS (Linux console problems...): Mention the new FAQ node.
* ; * src/window.c (syms_of_window) <window-point-insertion-type>: Doc fix.Eli Zaretskii2022-08-291-1/+2
|
* * lisp/find-file.el (ff-other-file-alist): Doc fix. (Bug#57325)Eli Zaretskii2022-08-291-1/+6
|
* * lisp/info.el (Info-mode): Support the Linux console better.Eli Zaretskii2022-08-281-3/+6
|
* ; Fix doc strings in latin1-disp.elEli Zaretskii2022-08-281-2/+2
| | | | | * lisp/international/latin1-disp.el (latin1-display-ucs-per-lynx) (latin1-display): Doc fix.
* Improve the documentation of glyphless-character displayEli Zaretskii2022-08-283-3/+12
| | | | | | | | | * lisp/international/characters.el (glyphless-char-display-control): * src/xdisp.c (syms_of_xdisp) <glyphless-char-display>: Mention the 'glyphless-char' face in the doc string. * doc/lispref/display.texi (Glyphless Chars): Index 'glyphless-char' face.
* ; * lisp/jit-lock.el (jit-lock-chunk-size): Doc fix.Eli Zaretskii2022-08-271-2/+5
|
* Fix documentation of 'glyphless-char-display'Eli Zaretskii2022-08-271-8/+9
| | | | | | * src/xdisp.c (syms_of_xdisp)<glyphless-char-display>: Doc fix. (gui_produce_glyphs, lookup_glyphless_char_display): Fix indentation.
* ; * etc/DEBUG: Fix wording of "X protocol errors" section.Eli Zaretskii2022-08-251-4/+4
|
* Treat smtp-auth method from auth-info as a symbolRobert Pluim2022-08-251-1/+1
| | | | | | | | | | | | The lookup of the SMTP auth method is done based on symbols, but sometimes the requested value comes from `auth-info', in which case it is a string, so call `intern-soft' to convert it to a symbol (which does nothing if it's already a symbol). * lisp/mail/smtpmail.el (smtpmail-try-auth-methods): Call `intern-soft' on the smtp-auth key's value. (Bug#57373) Do not merge to master
* * lisp/wdired.el: Improve "Commentary" section.Stefan Kangas2022-08-251-20/+16
|
* * lisp/wdired.el: Doc fix; don't mention obsolete variable.Stefan Kangas2022-08-251-7/+7
|
* * lisp/progmodes/etags.el (next-file): Minor doc fix.Stefan Kangas2022-08-251-1/+1
|
* * configure.ac: Move AC_LANG_PUSH/POP out of AC_CACHE_CHECK. (Bug#57380)Andreas Schwab2022-08-251-13/+11
| | | | (cherry picked from commit ce82300221f270241fdda1f5dfb567bdb1208543)
* ; * doc/misc/htmlfontify.texi: Fix version.Stefan Kangas2022-08-221-1/+1
|
* Update to Org 9.5.4-19-g4dff42Kyle Meyer2022-08-213-8/+13
|
* ; * lisp/find-file.el (ff-other-file-alist): Fix typo.Stefan Kangas2022-08-211-1/+1
|
* ; * lisp/find-file.el (ff-other-file-alist): Another doc fix. (Bug#57325)Eli Zaretskii2022-08-211-4/+8
|
* * lisp/find-file.el (ff-other-file-alist): Doc fix. (Bug#57325)Eli Zaretskii2022-08-211-0/+7
|
* Resurrect obsoletion warning for two functionsStefan Kangas2022-08-192-6/+8
| | | | | | | | | These were supposed to have been deleted, but never were. Resurrect their obsoletion warning and let's delete them in Emacs 29 instead. * lisp/subr.el (process-filter-multibyte-p) (set-process-filter-multibyte): Resurrect obsoletion warning. * etc/NEWS: Don't announce their deletion.
* * src/window.c (select_window): Fix assert for buffer = non-active minibufferAlan Mackenzie2022-08-191-1/+3
|
* Find libgccjit on macOS with Homebrew differentlyGerd Möllmann2022-08-191-2/+2
| | | | | * configure.ac (MAC_LIBS): Find libgccjit's directory slightly differently for brew installations.
* Improve image-mode-as-hex docstringStefan Kangas2022-08-181-11/+12
| | | | | * lisp/image-mode.el: Fix typos. (image-mode-as-hex): Doc fix; say that it uses 'hexl-mode' and reflow.
* * lisp/image-mode.el (image-mode-as-hex): Fix toggle instructions.Stefan Kangas2022-08-181-7/+3
|
* ; lisp/image-mode.el: Fix typo.Stefan Kangas2022-08-181-3/+3
|
* * lisp/image-mode.el: Improve commentary.Stefan Kangas2022-08-181-4/+8
|
* cl-reduce doc string improvementColin Woodbury2022-08-181-0/+4
| | | | | * lisp/emacs-lisp/cl-seq.el (cl-reduce): Explain what happens when using :from-end (bug#57273).
* Backport tempname changes from master (bug#57129)Paul Eggert2022-08-171-3/+19
| | | | * lib/tempname.c: Backport from master, which uses current Gnulib.
* ; * lisp/vc/ediff.el: Improve wording in last change.Stefan Kangas2022-08-161-5/+5
|
* Revert "; * doc/lispintro/emacs-lisp-intro.texi: Fix typo."Stefan Kangas2022-08-161-1/+1
| | | | | | This reverts commit 9d0dba44da7ac83d018fff3c26d33dac12ebd806. This was not a typo, but incorrectly matching parens in Info-mode.
* * doc/misc/gnus.texi (Article Washing): Fix Links URL.Stefan Kangas2022-08-161-1/+1
|