X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/c6dab55f6392e6af7eb72c6df4e16d3795423ac1..ae93bc748070852e8f697c2e8f05b9b5bc419b68:/lisp/ChangeLog diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2ee8799f62..10512265e7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,611 @@ +2013-11-05 Bozhidar Batsov + + * progmodes/ruby-mode.el (ruby-mode): Remove incorrect text from docstring. + +2013-11-04 Stefan Monnier + + * rect.el (rectangle--highlight-for-redisplay): + * emacs-lisp/smie.el (smie--next-indent-change): + Use buffer-chars-modified-tick. + + * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property. + + * electric.el (electric-indent-post-self-insert-function): + Only delete trailing whitepsace if it is indeed trailing (bug#15767). + +2013-11-04 Helmut Eller + + * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782). + +2013-11-04 Nathan Trapuzzano (tiny change) + + * emacs-lisp/cconv.el (cconv-convert): Check form of let binding + (bug#15786). + +2013-11-04 Stefan Monnier + + * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding. + + * progmodes/python.el: Fix up last change. + (python-shell--save-temp-file): New function. + (python-shell-send-string): Use it. Remove `msg' arg. Don't assume + `string' comes from the current buffer. + (python-shell-send-string-no-output): Remove `msg' arg. + (python--use-fake-loc): New var. + (python-shell-buffer-substring): Obey it. Try to compensate for the + extra coding line added by python-shell--save-temp-file. + (python-shell-send-region): Use python-shell--save-temp-file and + python-shell-send-file directly. Add `nomain' argument. + (python-shell-send-buffer): Use python-shell-send-region. + (python-electric-pair-string-delimiter): New function. + (python-mode): Use it. + +2013-11-04 Eli Zaretskii + + * startup.el (normal-top-level): Move setting eol-mnemonic-unix, + eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale + environment and decoding all of the default-directory's to here + from command-line. + (command-line): Decode also argv[0]. + + * loadup.el: Error out if default-directory is a multibyte string + when we are dumping. + + * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260) + +2013-11-04 Teodor Zlatanov + + * emacs-lisp/package.el (package-menu-mode) + (package-menu--print-info, package-menu--archive-predicate): + Add Archive column to package list. + +2013-11-04 Michael Albinus + + Fix problems found while writing a test suite. + + * net/tramp.el (tramp-file-name-regexp-unified): Simplify. + (tramp-file-name-for-operation): Use `tramp-tramp-file-p'. + (tramp-handle-substitute-in-file-name): Let-bind `process-environment' + to nil when running original file name handler. Otherwise, + there are problems with constructs like "$$FOO". + + * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix + for `localname'. + +2013-11-04 Bozhidar Batsov + + * progmodes/ruby-mode.el (ruby-mode): Clean up docstring. + + * subr.el (version<, version<=, version=): + Update docstrings with information for snapshot versions. + + * helpers.el: New library for misc helper functions. + (hash-table-keys): New function returning a list of hash keys. + (hash-table-values): New function returning a list of hash values. + +2013-11-04 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-smie--forward-token) + (ruby-smie--backward-token): Tokenize heredocs as semicolons. + +2013-11-04 Michal Nazarewicz + + * textmodes/fill.el (fill-single-char-nobreak-p): New function + checking whether point is after a 1-letter word. + +2013-11-04 Nathan Trapuzzano (tiny change) + + * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function): + Don't infloop when expanding region over `multiline' syntax-type that + begins a line (bug#15778). + +2013-11-04 Stefan Monnier + + * rect.el (rectangle-mark-mode): Rename from rectangle-mark. + Make it into a proper minor mode. + (rectangle--region): (implicitly) rename to rectangle-mark-mode. + (rectangle-mark-mode-map): New keymap. + (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796). + +2013-11-04 Glenn Morris + + * startup.el (command-line-1): Allow `-L :...' to append to load-path. + +2013-11-03 Stefan Monnier + + * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove. + (ruby-smie-rules): Use smie-rule-parent instead. + + * emacs-lisp/smie.el (smie-rule-parent): Always call + smie-indent-virtual rather than only for hanging tokens. + (smie--next-indent-change): New helper command. + +2013-11-03 Glenn Morris + + * Makefile.in (abs_srcdir): Remove. + (emacs): Unset EMACSLOADPATH. + +2013-11-02 Glenn Morris + + * Makefile.in (EMACS): Use a relative filename. + (abs_top_builddir): Remove. + (custom-deps, finder-data, autoloads): Use --chdir. + + * Makefile.in (abs_lisp): Remove, replace by abs_srcdir. + + Use relative filenames in TAGS files. + * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3) + (lisptagsfiles4, TAGS): Use relative file names. + (TAGS-LISP): Remove. + (maintainer-clean): No more TAGS-LISP file. + + * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3) + (lisptagsfiles4): Use absolute filenames again. + (TAGS, TAGS-LISP): Not everything needs to run in one line. + Remove all *loaddefs files, not just the first. Remove esh-groups. + (maintainer-clean): Delete TAGS, TAGS-LISP. + +2013-11-02 Bozhidar Batsov + + * emacs-lisp/package.el (package-version-join): + Recognize snapshot versions. + +2013-11-02 Bozhidar Batsov + + * subr.el (version-regexp-alist): Add support for snapshot versions. + +2013-11-02 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): + New function, replacement for `smie-rule-parent' for when we want to + skip over our direct parent if it's an assignment token.. + (ruby-smie-rules): Use it. + +2013-11-02 Dmitry Gutov + + * progmodes/ruby-mode.el Use `syntax-propertize-function' + unconditionally. Remove now unnecessary forward declarations. + Remove XEmacs-specific setup. + (ruby-here-doc-end-re, ruby-here-doc-beg-match) + (ruby-font-lock-syntactic-keywords) + (ruby-comment-beg-syntax, ruby-in-here-doc-p) + (ruby-here-doc-find-end, ruby-here-doc-beg-syntax) + (ruby-here-doc-end-syntax): Remove. + (ruby-mode): Don't check whether `syntax-propertize-rules' is + defined as function. + +2013-11-02 Bozhidar Batsov + + * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'. + +2013-11-01 Bozhidar Batsov + + * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax + table and abbrev table, `define-derived-mode' does that for us + anyway. + +2013-11-01 Glenn Morris + + * Makefile.in: Remove manual mh-e dependencies (writing .elc + files is atomic for some time, so no parallel compilation issues). + +2013-11-01 Jan Djärv + + * faces.el (face-x-resources): Add :distant-foreground. + (region): Use :distant-foreground for gtk and ns. + +2013-11-01 Tassilo Horn + + Allow multiple bibliographies when BibLaTeX is used rather than + BibTeX. + * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function. + (reftex-locate-bibliography-files): Us it. + +2013-11-01 Claudio Bley + + * image.el (image-type-header-regexps): Fix the 'pbm' part to + allow comments in pbm files. + + * term/w32-win.el (dynamic-library-alist): Support newer versions + of libjpeg starting with v7: look only for the DLL from the + version against which Emacs was built. + Support versions of libpng beyond 1.4.x. + Support libtiff v4.x. + +2013-11-01 Bozhidar Batsov + + * progmodes/ruby-mode.el (ruby-indent-tabs-mode) + (ruby-indent-level, ruby-comment-column, ruby-deep-arglist): + Add property :safe. + (ruby-deep-arglist): Add property :type. + +2013-10-31 Glenn Morris + + * Makefile.in (custom-deps, finder-data): No need to setq the target + variables, we are in the right directory and the defaults work fine. + +2013-10-30 Glenn Morris + + * Makefile.in (autoloads): Do not use abs_lisp. + + * emacs-lisp/autoload.el (autoload-generate-file-autoloads): + `newline' does not respect `standard-output', so use `princ'. + +2013-10-30 Alp Aker + + Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761) + * buff-menu.el (Buffer-menu--unmark): New function. + (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it. + +2013-10-30 Glenn Morris + + * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el. + + * emacs-lisp/package.el (lm-homepage): Declare. + + * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink): + Fix doc typos. + + * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler. + + * Makefile.in (finder-data, autoloads, update-subdirs) + (compile-main, compile-clean, compile-always, bootstrap-clean): + Check return value of cd. + (compile-calc): Remove. + +2013-10-30 Stefan Monnier + + * simple.el (copy-region-as-kill): Fix call to region-extract-function. + + * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler. + (byte-compile-and-folded): New function. + (=, <, >, <=, >=): Use it. + + * dos-w32.el (minibuffer-history-case-insensitive-variables) + (path-separator, null-device, buffer-file-coding-system) + (lpr-headers-switches): Check system-type before modifying them. + (find-buffer-file-type-coding-system): Mark obsolete. + (w32-find-file-not-found-set-buffer-file-coding-system): Rename from + find-file-not-found-set-buffer-file-coding-system. + (w32-untranslated-filesystem-list, w32-untranslated-canonical-name): + (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem) + (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p): + (w32-direct-print-region-helper, w32-direct-print-region-function) + (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix. + * startup.el (normal-top-level-add-subdirs-to-load-path): + * ps-print.el (ps-print-region-function): + * lpr.el (print-region-function): Use new name. + + * subr.el (custom-declare-variable-early): Remove function. + (custom-declare-variable-list): Remove var. + (error, user-error): Remove `while' loop. + (read-quoted-char-radix, read-quoted-char): Move to simple.el. + (user-emacs-directory-warning, locate-user-emacs-file): + Move to files.el. + * simple.el (read-quoted-char-radix, read-quoted-char): + * files.el (user-emacs-directory-warning, locate-user-emacs-file): + Move from subr.el. + * custom.el (custom-declare-variable-list): Don't process + custom-declare-variable-list. + + * progmodes/python.el (python-shell-get-buffer): New function. + (python-shell-get-process): Use it. + (python-shell-send-string): Always use utf-8 and add a cookie to tell + Python which encoding was used. Don't split-string since we only care + about the first line. Return the temp-file, if applicable. + (python-shell-send-region): Tell compile.el how to turn locations in + the temp-file into locations in the source buffer. + +2013-10-29 Stefan Monnier + + * subr.el (undefined): Add missing behavior from the C code for + unbound keys. + + * rect.el: Use lexical-binding. Add new rectangular region support. + (rectangle-mark): New command. + (rectangle--region): New var. + (deactivate-mark-hook): Reset rectangle--region. + (rectangle--extract-region, rectangle--insert-for-yank) + (rectangle--highlight-for-redisplay) + (rectangle--unhighlight-for-redisplay): New functions. + (region-extract-function, redisplay-unhighlight-region-function) + (redisplay-highlight-region-function): Use them to handle + rectangular region. + * simple.el (region-extract-function): New var. + (delete-backward-char, delete-forward-char, deactivate-mark): Use it. + (kill-new, kill-append): Remove obsolete `yank-handler' argument. + (kill-region): Replace obsolete `yank-handler' arg with `region'. + (copy-region-as-kill, kill-ring-save): Add `region' argument. + (redisplay-unhighlight-region-function) + (redisplay-highlight-region-function): New vars. + (redisplay--update-region-highlight): New function. + (pre-redisplay-function): Use it. + (exchange-point-and-mark): Don't deactivate the mark before + reactivate-it anyway. + * comint.el (comint-kill-region): Remove yank-handler argument. + * delsel.el (delete-backward-char, backward-delete-char-untabify) + (delete-char): Remove property, since it's now part of their + default behavior. + (self-insert-iso): Remove property since this command doesn't exist. + + * emacs-lisp/package.el (package--download-one-archive) + (describe-package-1): Don't query the user about final newline. + +2013-10-29 Daniel Colascione + + * net/tramp.el (tramp-methods): Document new functionality. + * net/tramp-sh.el (tramp-compute-multi-hops): Punt to + tramp-hostname-checker if method provides one instead of scanning + argument list for "%h" to decide hostname acceptability. + +2013-10-28 Michael Albinus + + * net/tramp-sh.el (tramp-sh-handle-copy-directory): + * net/tramp-smb.el (tramp-smb-handle-copy-directory): + Handle COPY-CONTENTS. (Bug#15737) + +2013-10-28 Daiki Ueno + + * epa-file.el + (epa-file-cache-passphrase-for-symmetric-encryption): + Document that this option has no effect with GnuPG 2.0 (bug#15552). + +2013-10-27 Xue Fuqiao + + * image.el (defimage): + (image-load-path): Doc fixes. + +2013-10-27 Alan Mackenzie + + Indent statements in macros following "##" correctly. + * progmodes/cc-engine.el (c-crosses-statement-barrier-p): + Modify the "#" arm of a cond form to handle "#" and "##" operators. + +2013-10-27 Nathan Trapuzzano (tiny change) + + * linum.el (linum-update-window): Fix boundary test (bug#13446). + +2013-10-27 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes + after `=' is probably a new expression. + +2013-10-27 Rüdiger Sonderfeld + + * man.el (man-imenu-title): New option. + (Man-mode-map): Add menu. (Bug#15722) + (Man-mode): Add imenu to menu. + +2013-10-26 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more + specific in what the first arg can be: a non-keyword word, + string/regexp/percent literal opener, opening paren, or unary + operator followed directly by word. + +2013-10-25 Stefan Monnier + + * progmodes/prolog.el: Remove old indent; use post-self-insert-hook. + (prolog-align-comments-flag, prolog-indent-mline-comments-flag) + (prolog-object-end-to-0-flag, prolog-electric-newline-flag) + (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag): + Remove vars, they do not apply any more. + (prolog-mode-abbrev-table): Remove redundant declaration. + (prolog-upper-case-string, prolog-lower-case-string): Remove. + (prolog-use-smie): Remove. + (prolog-smie-rules): Add indentation rule for the if-then-else layout + supported by prolog-electric-if-then-else-flag. + (prolog-mode-variables, prolog-menu): Use setq-local. + (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n. + Remove binding to `Backspace' since this key doesn't exist anyway. + Remove bindings for electric self-inserting keys. + (prog-mode): Assume it's defined. + (prolog-post-self-insert): New function. + (prolog-mode): Use it. + (prolog-indent-line, prolog-indent-level) + (prolog-find-indent-of-matching-paren) + (prolog-indentation-level-of-line, prolog-goto-comment-column) + (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance) + (prolog-goto-next-paren, prolog-in-string-or-comment) + (prolog-tokenize, prolog-inside-mline-comment) + (prolog-find-start-of-mline-comment): Remove functions. + (prolog-find-unmatched-paren, prolog-clause-end) + (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss. + (prolog-electric--if-then-else): Rename from + prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag. + (prolog-tokenize-searchkey): Remove const. + (prolog-clause-info): Use forward-sexp. + (prolog-forward-list, prolog-backward-list, prolog-electric-delete) + (prolog-electric-if-then-else): Remove commands. + (prolog-electric--colon): Rename from prolog-electric-colon; adapt it + for use in post-self-insert-hook. + (prolog-electric--dash): Rename from prolog-electric-dash; adapt it + for use in post-self-insert-hook. + (prolog-electric--dot): Rename from prolog-electric-dot; adapt it + for use in post-self-insert-hook. + (prolog-electric--underscore): Rename from prolog-electric--underscore; + adapt it for use in post-self-insert-hook. + +2013-10-25 Michael Albinus + + * emacs-lisp/ert.el (ert-run-tests-interactively): + Use `completing-read'. (Bug#9756) + +2013-10-25 Eli Zaretskii + + * simple.el (line-move): Call line-move-1 instead of + line-move-visual when the current window hscroll is zero, but + temporary-goal-column indicates we will need to hscroll as result + of the movement. (Bug#15712) + +2013-10-25 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-mode-menu): Use proper + capitalization. Use :visible instead of :active. + Fix `ruby-indent-exp' reference. Add menu items for the generic + commands that are used with SMIE. + (ruby-do-end-to-brace): Insert space after `{'. + +2013-10-25 John Anthony + + * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600) + + * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599) + +2013-10-25 Glenn Morris + + * vc/vc.el (vc-print-log): Don't use a working revision unless + one was explicitly specified. (Bug#15322) + +2013-10-25 Stefan Monnier + + * subr.el (add-to-list): Preserve return value in compiler-macro + (bug#15692). + +2013-10-25 Rüdiger Sonderfeld + + * progmodes/octave.el (octave-lookfor): Handle empty lookfor + result. Ask user to retry using '-all' flag. (Bug#15701) + +2013-10-24 Stefan Monnier + + * emacs-lisp/smie.el: New smie-config system. + (smie-config): New defcustom. + (smie-edebug, smie-config-show-indent, smie-config-set-indent) + (smie-config-guess, smie-config-save): New commands. + (smie-config--mode-local, smie-config--buffer-local) + (smie-config--trace, smie-config--modefuns): New vars. + (smie-config--advice, smie-config--mode-hook) + (smie-config--setter, smie-config-local, smie-config--get-trace) + (smie-config--guess-value, smie-config--guess): New functions. + (smie-indent-forward-token, smie-indent-backward-token): Don't copy + text properties. Treat "string fence" syntax like string syntax. + + * progmodes/sh-script.el (sh-use-smie): Change default. + (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars. + (sh-var-value): Simplify by CSE. + (sh-show-indent, sh-set-indent, sh-learn-line-indent) + (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE + is used. + (sh-guess-basic-offset): Use cl-incf. + (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2). + +2013-10-24 Helmut Eller + + * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste + (bug#15699). + +2013-10-24 Glenn Morris + + * Makefile.in (abs_top_srcdir): Remove. + (update-subdirs): Use relative path to update-subdirs. + +2013-10-24 Eli Zaretskii + + * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el) + ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el) + ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el): + Call unmsys--file-name before expand-file-name, not after it. + +2013-10-24 Michael Albinus + + * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'. + (ert-test-skipped): New error. + (ert-skip, ert-stats-skipped): New defuns. + (ert--skip-unless): New macro. + (ert-test-skipped): New struct. + (ert--run-test-debugger, ert-test-result-type-p) + (ert-test-result-expected-p, ert--stats, ert-stats-completed) + (ert--stats-set-test-and-result, ert-char-for-test-result) + (ert-string-for-test-result, ert-run-tests-batch) + (ert--results-update-ewoc-hf, ert-run-tests-interactively): + Handle skipped tests. (Bug#9803) + +2013-10-24 Glenn Morris + + * Makefile.in (check-declare): Remove unnecessary path in -l argument. + + * Makefile.in (abs_top_srcdir): New, set by configure. + (update-subdirs): Correct build-aux location. + +2013-10-24 Dmitry Gutov + + * vc/vc.el (vc-print-root-log): Always set `default-directory' + value, whether we could auto-deduce `backend', or not. + + * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block + with parameters" example. Simplify the "is it block or is it + hash" check, but also make it more thorough. + +2013-10-23 Masashi Fujimoto (tiny change) + + * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694) + +2013-10-23 Stefan Monnier + + * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of + { if it is hanging. + + * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for + :before ";". + +2013-10-23 Jed Brown (tiny change) + + * progmodes/compile.el (compilation-directory-matcher) + (compilation-page-delimiter): + Support GNU Make-4.0 directory quoting. (Bug#15678) + +2013-10-23 Leo Liu + + * ido.el (ido-tidy): Handle read-only text. + +2013-10-23 Glenn Morris + + * Makefile.in (abs_srcdir, abs_lisp): New, set by configure. + (emacs, compile, compile-always): + Quote entities that might contain whitespace. + (custom-deps, finder-data, autoloads): Use abs_lisp. + ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el) + ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el) + ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name. + +2013-10-23 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-smie--at-dot-call): + Use `following-char'. + +2013-10-22 Stefan Monnier + + * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test. + * progmodes/ruby-mode.el (ruby-smie-rules): + Remove corresponding workaround. Fix indentation rule of ";" so it + also applies when ";" is the parent. + +2013-10-22 Xue Fuqiao + + * frame.el (display-screens, display-pixel-height) + (display-pixel-width, display-mm-width, display-backing-store) + (display-save-under, display-planes, display-color-cells) + (display-visual-class, display-monitor-attributes-list): + Mention the optional ‘display’ argument in doc strings. + +2013-10-22 Michael Gauland + + * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some + viewers such as evince when ebnf-production-name-p is nil. (Bug#15625) + +2013-10-21 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated + TODO. Add "." after " @ ". + (ruby-smie--at-dot-call): New function. Checks if point at method + call with explicit target. + (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "." + to the method name tokens when it precedes them. + (ruby-smie--backward-id, ruby-smie--forward-id): Remove. + (ruby-smie-rules): Add rule for indentation before and after "." + token. + 2013-10-21 Stefan Monnier * textmodes/remember.el (remember-diary-extract-entries): @@ -463,7 +1071,7 @@ * textmodes/text-mode.el (text-mode-map): Use auto-fill help text from menu-bar.el. -2013-10-10 John Anthony (tiny change) +2013-10-10 John Anthony * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)