- 16 Apr, 2019 4 commits
-
-
Glenn Morris authored
Update for incompatible copy-file change re "directories".
-
Robert Pluim authored
* doc/emacs/building.texi (Compilation Mode): Describe faces available to affect appearance of compilation-mode buffers.
-
Eli Zaretskii authored
* doc/emacs/trouble.texi (Copyright Assignment): Mention the copyright assignment form explicitly. Suggested by Konstantin Kharlamov <hi-angel@yandex.ru>.
-
Eli Zaretskii authored
* doc/emacs/maintaining.texi (VC Undo): Remove a potentially inaccurate, outdated, and/or confusing sentence. (Bug#35290)
-
- 15 Apr, 2019 1 commit
-
-
Eli Zaretskii authored
* src/msdos.c (the_only_tty_output): Define. * src/msdos.h (the_only_tty_output): Declare. * src/frame.c (make_terminal_frame) [MSDOS]: * src/dispnew.c (init_display) [MSDOS]: Set up f->output_data.tty pointer using the_only_tty_output, before dereferencing the pointer. This prevents crashes with DPMI servers that provide NULL pointer protection.
-
- 14 Apr, 2019 5 commits
-
-
Stefan Monnier authored
(python-shell-prompt-detect): Use unwind-protect to try and not leave file behind in case of error.
-
Alexander Gramiak authored
* src/frame.c (free_monitors) [USE_GTK]: Define in the GTK case as well. * src/xfns.c (x-display-monitor-attributes-list) [USE_GTK]: Plug memory leak. Use dupstring over xstrdup as gdk_monitor_get_model may return NULL.
-
Alexander Gramiak authored
-
Robert Pluim authored
RFC 2046 specifies that the charset parameter is case-insensitive. * lisp/gnus/gnus-icalendar.el (gnus-icalendar-with-decoded-handle): Downcase charset. Suggested by Christophe TROESTLER <Christophe.TROESTLER@umons.ac.be>. (Bug#35265).
-
Phillip Lord authored
* nt/README.W32: Update details about packaging which changed for Emacs-26.
-
- 12 Apr, 2019 1 commit
-
-
Eli Zaretskii authored
-
- 11 Apr, 2019 9 commits
-
-
NicolasPetton authored
* README: * configure.ac: * msdos/sed2v2.inp: * nt/README.W32: Bump Emacs version to 26.2.
-
NicolasPetton authored
-
NicolasPetton authored
-
NicolasPetton authored
-
Eli Zaretskii authored
* src/minibuf.c (Fread_command): Document the return value when DEFAULT-VALUE is nil and the user enters nothing. * doc/lispref/minibuf.texi (High-Level Completion): Document the printed representation of a symbol whose name is empty. (Bug#3522)
-
Eli Zaretskii authored
-
Eli Zaretskii authored
* src/emacs.c: Fix reference to Cocoa CoreFoundation Release Notes. (Bug#35225)
-
Basil L. Contovounesios authored
* lisp/newcomment.el (comment-empty-lines): Consistently use US commas in docstring. Fix indentation of and typo in custom :type. (cherry picked from commit 690c678f)
-
Alex Branham authored
* lisp/indent.el (indent-relative): Document what happens when there is no previous nonblank line. * doc/lispref/text.texi (Relative Indent): Document indent-relative-first-indent-point instead of obsolete indent-relative-maybe. Fix documentation of which argument from 'indent-relative' is used. Bug#34858 (cherry picked from commit 10cd6587)
-
- 10 Apr, 2019 2 commits
-
-
Noam Postavsky authored
* doc/misc/nxml-mode.texi (Completion): As of 2016-01-16 "* lisp/nxml: Use standard completion; it also works for company-mode", completing an attribute when there is only one candidate inserts both quotes. Update the example accordingly.
-
Eric Abrahamsen authored
* lisp/simple.el (choose-completion-string-functions): Functions in this list actually need to accept four arguments, though the fourth should be ignored.
-
- 09 Apr, 2019 2 commits
-
-
Gemini Lasswell authored
* doc/misc/eieio.texi (Quick Start): Rename the class used in the example from 'record' to 'person'. (Building Classes): Advise user to check for name conflicts before naming a class. Add a missing apostrophe. (Making New Objects): Correct grammar. Rename the class used in the example from 'record' to 'my-class'.
-
Mattias Engdegård authored
* lisp/subr.el (alist-get): Rephrase the initial text to clarify the meaning of the TESTFN argument. It's an equality predicate, not a look-up function (Bug#35206). (cherry picked from commit c8146558)
-
- 08 Apr, 2019 1 commit
-
-
Eli Zaretskii authored
-
- 06 Apr, 2019 5 commits
-
-
Eli Zaretskii authored
* lisp/vc/vc.el (vc-version-diff, vc-version-ediff): Describe arguments in the doc strings. (Bug#35019)
-
Eli Zaretskii authored
* doc/lispref/windows.texi (Window Start and End): * src/window.c (Fset_window_start): Document that reliable setting of a window start position requires to adjust point to be visible. (Bug#34038)
-
Eli Zaretskii authored
* doc/lispref/windows.texi (Cyclic Window Ordering): Describe the effect of the 'other-window' window parameter. (Window Parameters): Improve the descriptions of window parameters. Move the detailed description of the 'quit-restore' window parameter from here... (Quitting Windows): ...to here. (Bug#35063)
-
Eli Zaretskii authored
* lisp/frame.el: Improve commentary for display-* functions. (Bug#35058)
-
Mauro Aranda authored
* lisp/autorevert.el (global-auto-revert-mode): Fix a typo. (Bug#35165)
-
- 04 Apr, 2019 1 commit
-
-
Alexander Gramiak authored
-
- 20 Mar, 2019 5 commits
-
-
Paul Eggert authored
* doc/lispref/searching.texi (Regexp Special): Say that regular expressions like "[a-m-z]" and "[[:alpha:]-~]" should be avoided, for the same reason that regular expressions like "+" and "*" should be avoided: POSIX says their behavior is undefined, and they are confusing anyway. Also, explain better what happens when the bound of a range is a raw 8-bit byte; the old explanation appears to have been obsolete anyway. Finally, say that ranges like "[\u00FF-\xFF]" that mix non-ASCII characters and raw 8-bit bytes should be avoided, since it’s not clear what they should mean.
-
NicolasPetton authored
-
NicolasPetton authored
-
NicolasPetton authored
-
Eli Zaretskii authored
* doc/emacs/search.texi (Word Search): Improve indexing of "M-s M-w".
-
- 19 Mar, 2019 3 commits
-
-
Basil L. Contovounesios authored
* lisp/url/url-handlers.el: Silence byte-compiler. (url-copy-file): Add 6th argument following change to copy-file in 2012-12-16T19:22:27+01:00!romain@orebokech.com. (bug#4410)
-
Eli Zaretskii authored
-
Eli Zaretskii authored
* lisp/emacs-lisp/package.el (package--download-one-archive): Make sure archive contents are written using UTF-8 encoding. (Bug#34909) (list-packages): Set buffer's encoding to UTF-8.
-
- 18 Mar, 2019 1 commit
-
-
NicolasPetton authored
-