aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * * .gitattributes: New file.Paul Eggert2015-01-011-0/+4
| |
| * * autogen.sh: Port better to non-GNU 'cp'.Paul Eggert2014-12-311-0/+5
| | | | | | | | Problem reported by Han Boetes.
* | Less 'make' chatter at top levelPaul Eggert2014-12-311-0/+10
| | | | | | | | | | | | | | | | | | * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_GEN, am__v_GEN_) (am__v_GEN_0, am__v_GEN_1, AM_V_at, am__v_at_, am__v_at_0) (am__v_at_1): New macros, copied from src/Makefile.in. ($(srcdir)/src/config.in, ${srcdir}/info/dir): Be less chatty when not verbose. ($(srcdir)/src/stamp-h.in): Simplify with '$@'.
* | Fix previous patch to match its commit messagePaul Eggert2014-12-291-3/+9
| |
* | system-name's returned value can varyPaul Eggert2014-12-291-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, the system-name variable is now obsolete. Fixes Bug#19438. * doc/lispref/os.texi (System Environment): * etc/NEWS: Document this. * doc/misc/efaq.texi: (Displaying the current file name in the titlebar): * lisp/desktop.el (desktop-save-frameset): * lisp/dnd.el (dnd-get-local-file-uri): * lisp/gnus/message.el (message-make-fqdn): * lisp/gnus/nnvirtual.el (nnvirtual-retrieve-headers) (nnvirtual-update-xref-header): * lisp/nxml/rng-uri.el (rng-uri-file-name-1): * lisp/org/org-clock.el (org-clock-save): * src/filelock.c (current_lock_owner): * src/xrdb.c (get_environ_db): * src/xterm.c (same_x_server): * src/xterm.c (x_term_init): Prefer (system-name) to system-name, and avoid naming locals 'system-name'. * doc/misc/smtpmail.texi (Server workarounds): Fix grammar. * lisp/startup.el (system-name): Now an obsolete variable. * src/editfns.c (cached_system_name): New static var. (init_and_cache_system_name): New function. (init_editfns, Fsystem_name): Use it. (syms_of_editfns): Initialize it and Vsystem_name to the same value. * src/sysdep.c [HAVE_SOCKETS]: Don't include <sys/socket.h>, <netdb.h>. (h_errno) [TRY_AGAIN && !HAVE_H_ERRNO]: Remove decl. (init_system_name) [HAVE_SOCKETS]: Don't canonicalize the name. Don't create a new string if the current value is already correct.
* | Merge from origin/emacs-24Paul Eggert2014-12-281-0/+6
|\ \ | |/ | | | | f646cd9 * build-aux/git-hooks/commit-msg: Allow tabs.
| * * build-aux/git-hooks/commit-msg: Allow tabs.Paul Eggert2014-12-281-0/+6
| | | | | | | | | | Treat them as if they were expanded to spaces, with tab stops every 8 columns.
* | Sanitize ChangeLog entries for previous merges.Fabián Ezequiel Gallina2014-12-271-1/+0
| |
* | Merge from origin/emacs-24Fabián Ezequiel Gallina2014-12-271-1/+12
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2616307 * net/tramp-sh.el (tramp-send-command-and-read): New optional arg MARKER. (tramp-get-remote-path): Use it. c773edc * net/tramp-gw.el (tramp-gw-open-connection): Suppress traces in wrong debug buffer. (tramp-gw-open-connection): Set process coding system 'binary. (tramp-gw-open-network-stream): Handle HTTP error 403. 8032fc1 * .gitignore: Ignore /conftest*. fb420e7 * lisp/subr.el (sit-for): Tweak docstring. 061db13 Fix vc-git-dir-status-files WRT up-to-date vs edited bb57c94 Consider electric-pair-mode in tex-mode. 7b94572 * test/automated/flymake/warnpred/test.pl: Tweak earlier change. 59c218f ChangeLog fix db2a768 * test/automated/flymake/warnpred/test.pl: Tweak format d9005dd src/gnutls.c (gnutls_init): Fix deprecation warning from GCC. Conflicts: ChangeLog lisp/ChangeLog src/ChangeLog test/ChangeLog
| * * .gitignore: Ignore /conftest*.Paul Eggert2014-12-161-0/+4
| |
| * * lisp/subr.el (sit-for): Tweak docstring.Stefan Monnier2014-12-151-0/+5
| | | | | | | | | | | | | | | | Fixes: debbugs:19381 * src/buffer.c (syms_of_buffer) <Vafter_change_functions>: fix docstring. * build-aux/git-hooks/commit-msg (at_sign): Bump up line-length limit to 78.
| * ChangeLog fixGlenn Morris2014-12-131-1/+2
| |
| * * .gitignore: Add !lib/std*.in.h, so as to not ignore the .in.h files.Paul Eggert2014-12-111-0/+1
| |
| * Git ignore lib/std*.hPaul Eggert2014-12-111-0/+6
| | | | | | | | | | * .gitignore: Add lib/std*.h, to ignore stdarg.h, stdbool.h, and stddef.h. Remove subsumed entries.
| * Port commit-msg to mawkPaul Eggert2014-12-101-0/+7
| | | | | | | | | | | | | | | | Problem reported by Ted Zlatanov in: http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg01093.html * build-aux/git-hooks/commit-msg (space, non_space, non_print): New vars. Use them as approximations to POSIX bracket expressions, on implementations like mawk that do not support POSIX regexps.
| * Improve commit-msg messages and autosquashPaul Eggert2014-12-101-0/+9
| | | | | | | | | | | | | | | | Problem reported by Michal Nazarewicz in Bug#19337. * build-aux/git-hooks/commit-msg: Add "commit message" to diagnostics. Distinguish better between tabs and other unprintable chars in diagnostics. Don't complain if a prefix "fixup! " or "squash! " makes a summary line too long.
| * ChangeLog fixGlenn Morris2014-12-081-6/+4
| |
| * Port commit-message checking to FreeBSD 9.Paul Eggert2014-12-071-0/+12
| | | | | | | | | | | | | | | | | | | | | | This fixes a bug reported by Jan Djärv in: http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00704.html along with some other issues I noticed while testing with FreeBSD. * build-aux/git-hooks/commit-msg: Prefer gawk if available. Prefer en_US.UTF-8 to en_US.utf8, as it's more portable. Work around bug in FreeBSD 9 awk, where /[[:cntrl:]]/ matches ordinary text characters. Be less tricky about quoting "'" in a shell script.
| * * .gitignore: Ignore autosave files.Stefan Monnier2014-12-051-0/+4
| |
* | Prefer stpcpy to strcatPaul Eggert2014-12-251-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * admin/merge-gnulib (GNULIB_MODULES): Add stpcpy. * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate. * lib/stpcpy.c, m4/stpcpy.m4: New files, from gnulib. * lib-src/ebrowse.c (sym_scope_1, operator_name, open_file): * lib-src/emacsclient.c (get_server_config, set_local_socket) (start_daemon_and_retry_set_socket): * lib-src/etags.c (main, C_entries, relative_filename): * lib-src/pop.c (sendline): * lib-src/update-game-score.c (main): * lwlib/xlwmenu.c (resource_widget_value): * src/callproc.c (child_setup): * src/dbusbind.c (xd_signature_cat): * src/doc.c (get_doc_string, Fsnarf_documentation): * src/editfns.c (Fuser_full_name): * src/frame.c (xrdb_get_resource): * src/gtkutil.c (xg_get_file_with_chooser): * src/tparam.c (tparam1): * src/xfns.c (xic_create_fontsetname): * src/xrdb.c (gethomedir, get_user_db, get_environ_db): * src/xsmfns.c (smc_save_yourself_CB): Rewrite to avoid the need for strcat, typically by using stpcpy and/or lispstpcpy. strcat tends to be part of O(N**2) algorithms. * src/doc.c (sibling_etc): * src/xrdb.c (xdefaults): Now a top-level static constant.
* | ChangeLog fixesGlenn Morris2014-12-241-32/+11
| |
* | resolve ChangeLog merge conflictStephen Leake2014-12-241-0/+8
|\ \
| * | Merge from gnulibPaul Eggert2014-12-221-0/+8
| | | | | | | | | | | | | | | | | | | | | 2014-12-20 utimens: remove unnecessary assert 2014-12-16 stdalign: port better to HP compilers 2014-12-16 stdalign: work around Apple GCC 4.0 bug * lib/stdalign.in.h, lib/utimens.c, m4/stdalign.m4: Update from gnulib.
* | | * CONTRIBUTE: add Savannah url, cleanup announcing freeze.Stephen Leake2014-12-231-0/+4
| | |
* | | Move user-level information from CONTRIBUTE to doc/emacs/trouble.texiStephen Leake2014-12-231-0/+19
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes bug#19299 * CONTRIBUTE: Move user-level information to doc/emacs/trouble.texi (commit messages): new, gathered from comments on emacs-devel (Changelog notes): add reference to GNU coding standards section 5.2; doc 'present tense', bug fix format (branches): freeze announcements are made on info-gnu-emacs mailing list (git vs rename): new * doc/emacs/trouble.texi: Move user-level information from CONTRIBUTE here * lisp/startup.el (fancy-about-text): change buttons for etc/CONTRIBUTE to (info "(emacs)Contributing")
* | Spelling fixesPaul Eggert2014-12-131-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | All uses changed. * lib-src/etags.c (analyze_regex): Rename from analyse_regex. * lisp/cedet/semantic/lex-spp.el: (semantic-lex-spp-analyzer-do-replace): Rename from semantic-lex-spp-anlyzer-do-replace. * lisp/emacs-lisp/cconv.el (cconv--analyze-use): Rename from cconv--analyse-use. (cconv--analyze-function): Rename from cconv--analyse-function. (cconv-analyze-form): Rename from cconv-analyse-form. * src/regex.c (analyze_first): Rename from analyze_first.
* | Remove lib-src/grep-changelogGlenn Morris2014-12-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref: http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00145.html * lib-src/grep-changelog: Remove file. * lib-src/Makefile.in (INSTALLABLE_SCRIPTS): Remove. (all, install, uninstall): Remove INSTALLABLE_SCRIPTS. * doc/man/grep-changelog.1: Remove file. * make-dist: No more lib-src/grep-changelog. * INSTALL: No longer mention grep-changelog. * admin/quick-install-emacs (PUBLIC_LIBSRC_SCRIPTS): Remove, and all uses. * admin/authors.el (authors-valid-file-names): Add grep-changelog. * etc/NEWS: Mention this.
* | * INSTALL.REPO: Revert 2014-12-06 change.Glenn Morris2014-12-131-0/+4
| | | | | | | | You _can_ just run make after a clean checkout, thanks to the GNUmakefile.
* | Place ChangeLog entries in the correct filesGlenn Morris2014-12-131-17/+2
| |
* | Convert Czech and Slovakian refcards to UTF-8Paul Eggert2014-12-131-0/+10
| | | | | | | | | | | | | | | | | | * admin/notes/unicode: Don't mention Czech and Slovakian refcards. * etc/refcards/cs-dired-ref.tex, etc/refcards/cs-refcard.tex: * etc/refcards/cs-survival.tex, etc/refcards/sk-dired-ref.tex: * etc/refcards/sk-refcard.tex, etc/refcards/sk-survival.tex: Convert from iso-latin-2 to utf-8. Remove no-longer-necessary coding comments and "\input utf8off" directives.
* | Fix dates in ChangeLog entries merged from emacs-24.Eli Zaretskii2014-12-131-4/+4
| |
* | Replace union hack with C11-style max_align_tPaul Eggert2014-12-121-0/+8
| | | | | | | | | | | | | | * admin/merge-gnulib (GNULIB_MODULES): Add stddef, for max_align_t. * lib/gnulib.mk: Regenerate. * src/alloc.c (XMALLOC_BASE_ALIGNMENT): Use max_align_t instead of a hack involving a union.
* | Merge from gnulib (a couple more changes)Paul Eggert2014-12-121-0/+1
| |
* | Remove duplicate ChangeLog entriesPaul Eggert2014-12-121-23/+0
| |
* | Merge from origin/emacs-24Ted Zlatanov2014-12-121-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bd6c441 * simple.el (password-word-equivalents): Add "passcode", used for numeric secrets like PINs or RSA tokens. 16d4c1c A better fix for bug#19346 82ec808 * .gitignore: Add !lib/std*.in.h, so as to not ignore the .in.h files. 3cf7629 Git ignore lib/std*.h 301a401 Always define `gnutls-available-p' even if GnuTLS is not available. d76b9b2 Don't break example string between 2 lines (bug#19257) 75b4857 Port commit-msg to mawk 9ac0332 Improve commit-msg messages and autosquash 0c2f254 Support overflow-newline-into-fringe together with word-wrap (bug#19300) 935ee05 * net/tramp-sh.el (tramp-get-remote-path): Use a login shell in order to determine `tramp-own-remote-path'. c2db939 python.el: Support interpreter paths with spaces d83f329 ChangeLog fix 0f9fbb9 Port commit-message checking to FreeBSD 9. 3db1ada admin/MAINTAINERS: Update my interests and responsibilities. 6382f24 * .gitignore: Ignore autosave files. Conflicts: ChangeLog lisp/progmodes/python.el src/gnutls.c
* | Merge from gnulibPaul Eggert2014-12-121-0/+11
| | | | | | | | | | | | | | | | | | | | 2014-12-12 stddef: support C11's max_align_t 2014-12-08 apply _GL_ATTRIBUTE_PURE to some inline functions 2014-12-02 support GNU format printf and scanf on mingw * doc/misc/texinfo.tex, lib/stat-time.h, lib/stddef.in.h: * lib/timespec.h, m4/extensions.m4, m4/stddef_h.m4, m4/stdio_h.m4: Update from gnulib. * lib/gnulib.mk: Regenerate.
* | ChangeLog fixesGlenn Morris2014-12-101-7/+3
| |
* | Various minor details accumulated over timeStefan Monnier2014-12-081-2/+2
| | | | | | | | | | | | | | | | | | * lisp/info.el (Info-mode-map): Remove left-over binding. * lisp/net/tramp.el (tramp-handle-make-symbolic-link): Mark unused arg. * lisp/obsolete/gulp.el (gulp-create-m-p-alist): Remove unused var `mnt-tm'. * lisp/progmodes/gud.el (gud-gdb-completions): Remove unused var `start'. * lisp/url/url-http.el (url-http-activate-callback): Make debug more verbose. * src/process.c: Whitespace and line-break nitpicks.
* | Fix merge glitches in 2 ChangeLog files.Eli Zaretskii2014-12-081-1/+0
| |
* | * CONTRIBUTE: minor improvementsStephen Leake2014-12-061-2/+9
| | | | | | | | * ChangeLog: cleanup entries for my recent commits
* | Improve CONTRIBUTE and related files.Stephen Leake2014-12-061-0/+9
| | | | | | | | | | | | | | | | | | | | | | * CONTRIBUTE: improve; add explicit web references, move some info from admin/notes/* here. * INSTALL.REPO: You can't "just run make" after a clean checkout. * admin/notes/commits: deleted; merged into ./CONTRIBUTE * admin/notes/repo: move commit, branch info into ./CONTRIBUTE
* | Merge from emacs-24Stefan Monnier2014-12-051-0/+6
|\ \ | |/
| * * .gitignore: Avoid "**", as it requires Git 1.8.2 or later.Paul Eggert2014-12-011-0/+1
| |
| * * .gitignore: Remove redundant pattern (subsumed by _*).Paul Eggert2014-12-011-0/+4
| |
* | .gitignore: Ignore test/biditest.txt.Eli Zaretskii2014-12-051-0/+4
| |
* | * .gitignore: Ignore loaddefs directly under lisp, and in sub-sub-directoriesLars Magne Ingebrigtsen2014-12-011-0/+5
| |
* | ChangeLog fix.Glenn Morris2014-11-291-5/+4
| |
* | Fix up merged ChangeLog entries (dates, duplication, etc)Glenn Morris2014-11-291-1/+1
| |
* | Merge branch 'emacs-24'.Paul Eggert2014-11-281-1/+68
|\ \ | |/
| * Fix white-space problems in ChangeLogs.Paul Eggert2014-11-241-1/+1
| |