summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* * doc/misc/org.texi (Installation): Fix clone commands.Michael Albinus2018-03-281-0/+1
|
* Update Org to v9.1.9Rasmus2018-03-27106-648/+660
| | | | Please note this is a bugfix release. See etc/ORG-NEWS for details.
* ; Fix some tiny doc typosGlenn Morris2018-03-272-2/+2
|
* De-obsolete `if-let' and `when-let'Michael Heerdegen2018-03-272-26/+28
| | | | | | | | | | 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.
* * lisp/htmlfontify.el (hfy-begin-span-handler): Doc fix.Glenn Morris2018-03-262-4/+4
|
* * doc/lispref/functions.texi (Defining Functions): Improve indexing.Eli Zaretskii2018-03-261-0/+2
|
* Fix crash after frame is freed on macOS (bug#30800)Aaron Jensen2018-03-251-0/+4
| | | | | * src/nsterm.m (x_free_frame_resources): Clear represented_frame. (bug#30800)
* More manual editingMichael Albinus2018-03-258-22/+56
| | | | | | | | | | | | | | * 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.
* Minor manual changes changesMichael Albinus2018-03-251-9/+18
| | | | | * doc/emacs/misc.texi (FFAP): Complete commands. (Amusements): Add some @cindex entries. Add "M-x butterfly".
* * lisp/calculator.el (calculator-paste-decimals): Add version.Glenn Morris2018-03-231-1/+1
|
* ; Use GNU not Gnu in docsGlenn Morris2018-03-2313-19/+19
|
* More proofreading of the Emacs manualEli Zaretskii2018-03-233-124/+157
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* * src/lisp.h (struct Lisp_Buffer_Local_Value): Update commentary.Noam Postavsky2018-03-231-9/+8
|
* * doc/emacs/trouble.texi: Fix location of `emacs-version' index.Noam Postavsky2018-03-231-1/+1
|
* Explain more about (defvar foo) form (Bug#18059)Noam Postavsky2018-03-232-4/+38
| | | | | | | | | * 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.
* * doc/lispref/buffers.texi (Buffer List): Fix grammar.Charles A. Roelli2018-03-221-1/+1
|
* * doc/lispref/anti.texi (Antinews): Fix grammar.Charles A. Roelli2018-03-221-3/+4
|
* * lisp/org/ob-lisp.el (org-babel-lisp-eval-fn): Tweak type.Glenn Morris2018-03-221-1/+1
| | | | Avoids type mismatch when relevant library is not present/loaded.
* sql.el defcustom fixesGlenn Morris2018-03-221-8/+15
| | | | | | * lisp/progmodes/sql.el (sql-login-params): Update. Avoids type mismatch with postgres and sqlite login params. (sql-postgres-login-params): Bump version.
* Document DEFUN attributesEli Zaretskii2018-03-221-1/+38
| | | | | * doc/lispref/internals.texi (Writing Emacs Primitives): Document specification of function attributes in DEFUN.
* * etc/NEWS: Add an entry for auth-source-pass.Nicolas Petton2018-03-221-0/+4
|
* Fix the MSDOS buildEli Zaretskii2018-03-221-0/+1
| | | | * msdos/sed2v2.inp (HAVE_SBRK): Define to 1.
* Improve warning and error messagesEric Abrahamsen2018-03-221-8/+12
| | | | | | * lisp/emacs-lisp/eieio-base.el (eieio-persistent-read, (eieio-persistent-validate/fix-slot-value): Indicate exactly what went wrong.
* Adjust eieio persistence tests for expected failureEric Abrahamsen2018-03-221-4/+12
| | | | | | | | * 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.
* Let eieio-persistent-read read what object-write has writtenEric Abrahamsen2018-03-221-8/+17
| | | | | | | | | | | * 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.
* Handle possible classtype values in eieio-persistent-readEric Abrahamsen2018-03-221-1/+1
| | | | | | * 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.
* Add new tests for eieio persistencePierre Téchoueyres2018-03-221-10/+103
| | | | | | | | * 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.
* * lisp/gnus/gnus-cloud.el (gnus-cloud-synced-files): Fix doc & type.Glenn Morris2018-03-211-3/+9
|
* * lisp/ibuf-ext.el (ibuffer-never-search-content-mode): Fix type.Glenn Morris2018-03-211-1/+1
|
* * doc/lispref/windows.texi (Selecting Windows): Fix a typo.Glenn Morris2018-03-211-1/+1
|
* * doc/lispref/internals.texi (Writing Emacs Primitives): Fix grammar.Charles A. Roelli2018-03-211-1/+1
|
* Firm up documentation of generalized variablesAlan Mackenzie2018-03-211-16/+18
| | | | | | | | | * doc/lispref/variables.texi (Generalized Variables) (Setting Generalized Variables): Define a generalized variable as something setf can write to. Remove the insinuation that hackers have poor memories. State explicitly that the list of GVs given is complete. Remove the suggestion that `setf' has superseded, or is in the process of superseding, `setq'. Make minor corrections to the English.
* Improve documentation of Auto-Revert modeEli Zaretskii2018-03-211-0/+3
| | | | | | * doc/emacs/files.texi (Reverting): Mention that Aut-Revert applies to Dired buffers as well. Suggested by Michael Albinus <michael.albinus@gmx.de> in emacs-manual-bugs@gnu.org.
* Improvements in dired.texiEli Zaretskii2018-03-211-16/+32
| | | | | | | | | | | | | | | * doc/emacs/dired.texi (Dired): Mention that Dired works with remote directories. (Dired Enter): ls-lisp is used on some remote systems as well. (Dired Navigation): Mention and index the command names. (Dired Deletion): Document the 'always' value of dired-recursive-deletes. Mention the alternative deletion method. (Marks vs Flags): Fix spelling of Auto-Revert mode. Document what marking does on a subdirectory header line. (Operating on Files): Document that 'Z' uses gzip or compress. (Comparison in Dired): Mention ediff-files. (Misc Dired Features): Fix a typo. Suggested by Michael Albinus <michael.albinus@gmx.de> in emacs-manual-bugs@gnu.org.
* Revert "Support all perl variable declarators and prefixes"Noam Postavsky2018-03-201-4/+3
| | | | | | | | | It highlights normal variable names in perl programs (Bug#30812). * lisp/progmodes/perl-mode.el (perl-imenu-generic-expression) (perl-font-lock-keywords-2): Restore values prior to Bug#27613 fix. Don't merge to master, we will fix Bug#27613 properly there (it's too close to release to do that on emacs-26).
* Port to 32-bit sparc64Paul Eggert2018-03-201-1/+5
| | | | | | | | Backport from master. Problem reported by Ulrich Mueller; fix suggested by Eli Zaretskii and Andreas Schwab (Bug#30855). * src/alloc.c (mark_memory): Call mark_maybe_object only on pointers that are properly aligned for Lisp_Object.
* ; Rewrap doc stringPaul Eggert2018-03-201-22/+22
|
* Correct Info link markupRobert Pluim2018-03-202-3/+3
| | | | | | * lisp/gnus/gnus-agent.el (gnus-agent-auto-agentize-methods): Correct markup for Info link. * src/minibuf.c (Fcompleting_read): Likewise.
* Improve documentation of 'with-help-window'Nick Helm2018-03-202-19/+19
| | | | | | | | | * doc/lispref/help.texi (Help Functions): Change variable name to 'buffer-or-name'. * lisp/help.el (with-help-window): Change variable name to 'buffer-or-name' and rewrite the doc string, adding reference to 'help-window-setup'. (Bug#30792)
* Minor improvements in building.texiEli Zaretskii2018-03-201-1/+14
| | | | | | | | | | * doc/emacs/building.texi (Compilation Shell): Mention that this section is for local compilation buffers. (Compilation, Compilation Mode): Mention that 'g' is bound to 'recompile' in compilation buffers. (Grep Searching): Add a cross-reference to "Compilation Mode". Suggested by Michael Albinus <michael.albinus@gmx.de> in emacs-manual-bugs@gnu.org.
* * lisp/textmodes/bibtex.el (bibtex-mark-entry): activate markAlex Branham2018-03-201-1/+1
|
* ; Spelling fixPaul Eggert2018-03-191-1/+1
|
* * doc/emacs/building.texi (Starting GUD): Mention 'guiler'.Eli Zaretskii2018-03-191-0/+4
|
* Yet more proofreading of the Emacs manualEli Zaretskii2018-03-191-19/+26
| | | | | | | | * doc/emacs/building.texi (Compilation, Grep Searching) (Debuggers, GUD Customization, Source Buffers) (Breakpoints Buffer, Threads Buffer): Minor fixes and updates. Suggested by Michael Albinus <michael.albinus@gmx.de> in emacs-manual-bugs@gnu.org.
* * doc/emacs/rmail.texi: Fix broken link.Paul Eggert2018-03-191-1/+1
|
* ; Spelling fixPaul Eggert2018-03-191-1/+1
|
* Fix recently-added POP doc glitchPaul Eggert2018-03-191-1/+1
| | | | | * doc/emacs/rmail.texi (Remote Mailboxes): POP3 → POP, when talking about POP in general.
* More proofreading of the Emacs manualEli Zaretskii2018-03-192-80/+107
| | | | | | | | | | | | | | | | | | | | | | | * doc/emacs/macos.texi (Mac / GNUstep Basics): Fix typos. Improve indexing. (Mac / GNUstep Basics, Mac / GNUstep Customization) (Mac / GNUstep Events): Improve indexing. * doc/emacs/rmail.texi (Rmail): Mention Gnus. (Rmail Basics, Rmail Scrolling): Improve cross-references and indexing. (Rmail Motion): Minor improvements. (Rmail Inbox): Remove outdated text about Babyl format. (Rmail Files): Formatting changes. Comment out set-rmail-inbox-list in the table of commands, as it is commented out in the text that follows. (Rmail Output, Rmail Labels, Rmail Reply, Rmail Make Summary): Minor copyedits. (Rmail Summary Edit): Document rmail-summary-scroll-between-messages. (Rmail Editing): Improve indexing. (Movemail): Fix typos. (Remote Mailboxes): Use "POP3" rather than "POP".
* Fix typo in the Emacs manual's VC chapterSimen Heggestøyl2018-03-191-1/+1
| | | | * doc/emacs/maintaining.texi (VC Directory Buffer): Fix a typo.
* Pass json-readtable-error data as a list (bug#30489)Basil L. Contovounesios2018-03-182-2/+3
| | | | | | * lisp/json.el (json-readtable-dispatch): Fix error data. * test/lisp/json-tests.el (test-json-read): Check error data is a list.