- 01 Apr, 2018 4 commits
-
-
Glenn Morris authored
-
Eli Zaretskii authored
* lisp/minibuffer.el (completion-at-point-functions): * doc/lispref/minibuf.texi (Completion in Buffers): Fix wording and filling. (cherry picked from commit a8ddd05d)
-
Stefan Monnier authored
(cherry picked from commit b56c56f2)
-
Eli Zaretskii authored
-
- 31 Mar, 2018 5 commits
-
-
Eli Zaretskii authored
-
Hong Xu authored
* lisp/subr.el (kbd): Add `key-description' as inverse of `kbd' in the doc.
-
Noam Postavsky authored
* doc/lispref/control.texi (Pattern matching case statement): * lisp/emacs-lisp/pcase.el (pcase): State that pcase returns nil if no patterns match. (pcase-exhaustive): State that an error is signaled if no patterns match.
-
Paul Eggert authored
-
Richard Stallman authored
-
- 28 Mar, 2018 3 commits
-
-
Glenn Morris authored
; Hey fellow kids, remember that gag from 2008? Emacs does.
-
Glenn Morris authored
* doc/emacs/fortran-xtra.texi (ForIndent Cont, ForIndent Num) (Fortran Columns): * doc/emacs/picture-xtra.texi (Rectangles in Picture): Fix recent changes that neglected the splitting of the pdf manuals.
-
Michael Albinus authored
-
- 27 Mar, 2018 2 commits
-
-
Rasmus authored
Please note this is a bugfix release. See etc/ORG-NEWS for details.
-
Glenn Morris authored
-
- 26 Mar, 2018 3 commits
-
-
Michael Heerdegen authored
For the following release it is planned to make `if-let*' and `when-let*' aliases for `if-let' and `when-let'. For now we revert declaring `if-let' and `when-let' obsolete and tweak the docstrings. * lisp/emacs-lisp/subr-x.el (if-let*, when-let*): Make docstrings refer to those of `if-let' and `when-let'. (if-let, when-let): De-obsolete. Rewrite documentation.
-
Glenn Morris authored
-
Eli Zaretskii authored
-
- 25 Mar, 2018 3 commits
-
-
Aaron Jensen authored
* src/nsterm.m (x_free_frame_resources): Clear represented_frame. (bug#30800)
-
Michael Albinus authored
* doc/emacs/basic.texi: * doc/emacs/calendar.texi: * doc/emacs/display.texi: * doc/emacs/mini.texi: * doc/emacs/misc.texi: * doc/emacs/picture-xtra.texi: * doc/misc/info.texi: Prefer <PageDown> and <PageUp> over <next> and <prior>. Add missing @kindex entries. * doc/emacs/custom.texi (Function Keys): Fix and add missing key symbols.
-
Michael Albinus authored
* doc/emacs/misc.texi (FFAP): Complete commands. (Amusements): Add some @cindex entries. Add "M-x butterfly".
-
- 23 Mar, 2018 6 commits
-
-
Glenn Morris authored
-
Glenn Morris authored
-
Eli Zaretskii authored
* doc/emacs/trouble.texi (DEL Does Not Delete): Improve wording. (Screen Garbled): Mention the command name. (Bug Criteria): Mention that problems in packages should first be reported to the respective maintainers. (Checklist): Fix wording. (Contributing, Copyright Assignment): Minor copyedits. * doc/emacs/misc.texi (Amusements): Remove Landmark. * doc/emacs/picture-xtra.texi (Tabs in Picture): Improve wording. (Rectangles in Picture): Add a cross-reference to "Registers". * doc/emacs/misc.texi (Gnus Group Buffer, Gnus Summary Buffer): Mention command names in parentheses. (Gnus Summary Buffer): Document "M-r". (Network Security): Document that current NSM works with TLS encryption. Fix markup. (Document View): Improve wording and fix a typo. (DocView Conversion): Rephrase description of doc-view-cache-directory. (Single Shell): Mention variables that control when shell output appears in the echo area. (Shell Mode): Improve wording. (Shell Prompts): Fix a typo. (Shell Ring, Term Mode): Mention command names. (History References): Add a cross-reference to "Rebinding". (Remote Host): Mention SSH. (TCP Emacs server): Improve wording. (emacsclient Options): Minor improvements. (PostScript): Fix wording. (PostScript Variables): Mention that ps-font-size could be a cons. (Sorting): Minor improvements. Suggested by Michael Albinus <michael.albinus@gmx.de> in emacs-manual-bugs@gnu.org
-
Noam Postavsky authored
-
Noam Postavsky authored
-
Noam Postavsky authored
* doc/lispref/variables.texi (Defining Variables) (Using Lexical Binding): * doc/lispref/compile.texi (Compiler Errors): Emphasize that omitting VALUE for `defvar' marks the variable special only locally. * doc/lispref/variables.texi (Using Lexical Binding): Add example of using `defvar' without VALUE.
-
- 22 Mar, 2018 13 commits
-
-
Charles A. Roelli authored
-
Charles A. Roelli authored
-
Glenn Morris authored
Avoids type mismatch when relevant library is not present/loaded.
-
Glenn Morris authored
* lisp/progmodes/sql.el (sql-login-params): Update. Avoids type mismatch with postgres and sqlite login params. (sql-postgres-login-params): Bump version.
-
Eli Zaretskii authored
* doc/lispref/internals.texi (Writing Emacs Primitives): Document specification of function attributes in DEFUN.
-
NicolasPetton authored
-
Eli Zaretskii authored
* msdos/sed2v2.inp (HAVE_SBRK): Define to 1.
-
Eric Abrahamsen authored
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read, (eieio-persistent-validate/fix-slot-value): Indicate exactly what went wrong.
-
Eric Abrahamsen authored
* test/lisp/emacs-lisp/eieio-tests/eieio-test-persist.el (eieio-test-persist-hash-and-vector, eieio-test-persist-interior-lists): Persistence does not currently handle deeply-nested objects. Expect current failures, and mark for future fixes.
-
Eric Abrahamsen authored
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value): `object-write' may quote lists inside hash tables and vectors, so unquote those lists here. This patch allows the eieio-persistent write/restore process to perform a clean round trip. It only handles a very specific and limited range of object structures, but at least the write and read procedures match.
-
Eric Abrahamsen authored
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value): The function `eieio-persistent-slot-type-is-class-p' could return either a single class, or a list of classes.
-
Pierre Téchoueyres authored
* test/lisp/emacs-lisp/eieio-tests/eieio-test-persist.el: (hash-equal): New comparison test for hash-tables. (persist-test-save-and-compare): Use test for hash-tables. (eieio-test-persist-hash-and-vector, eieio-test-persist-interior-lists): New tests.
-
Glenn Morris authored
-
- 21 Mar, 2018 1 commit
-
-
Glenn Morris authored
-