-2015-02-12 Kelvin White <kwhite@gnu.org>
++2015-03-03 Kelvin White <kwhite@gnu.org>
+
+ * NEWS: Add section to include ERC changes
+
-2015-01-17 Eli Zaretskii <eliz@gnu.org>
++2015-03-03 Eli Zaretskii <eliz@gnu.org>
+2015-03-02 Daniel Colascione <dancol@dancol.org>
+
+ * NEWS: Mention finalizers.
+
+2015-02-09 Gareth Rees <gdr@garethrees.org> (tiny change)
+
+ * NEWS.24: Fix typo (bug#19820)
+
+2015-02-08 Artur Malabarba <bruce.connor.am@gmail.com>
+
+ * NEWS: Document `comment-line'.
+
+2015-02-03 Artur Malabarba <bruce.connor.am@gmail.com>
+
+ * NEWS: Document package.el's improved dependency-handling.
+
+2015-01-29 Francesc Rocher <francesc.rocher@gmail.com>
+
+ * images/splash.svg, images/splash.png:
+ * images/splash.pbm, images/splash.xpm, images/README:
+ Splash images refurbished.
+
+2015-01-28 Eli Zaretskii <eliz@gnu.org>
* tutorials/TUTORIAL.he: Use u+05f4 HEBREW PUNCTUATION GERSHAYIM
instead of u+0022 QUOTATION MARK in Hebrew acronyms.
otherwise leave it unmarked.
\f
-* Changes in Emacs 24.5
-
----
-** The default value of `history-length' has increased to 100.
+* Installation Changes in Emacs 25.1
+++
-\f
-* Changes in Specialized Modes and Packages in Emacs 24.5
++
+** Building Emacs now requires C99 or later.
+
+ ** The variable `redisplay-dont-pause' is obsolete.
+
+** Building Emacs now requires GNU make, version 3.81 or later.
+++
** `call-process-shell-command' and `process-file-shell-command'
don't take "&rest args" any more.
+** By default, Emacs no longer works on IRIX. We expect that Emacs
+users are not affected by this, as SGI stopped supporting IRIX in
+December 2013. If you are affected, please send a bug report. You
+should be able to work around the problem either by porting the Emacs
+undumping code to GCC under IRIX, or by configuring --with-wide-int,
+or by sticking with Emacs 24.4.
+
+ ** ERC
+
+** 'configure' now prefers gnustep-config when configuring GNUstep.
+If gnustep-config is not available, the old heuristics are used.
+
+ +++
+ *** New option `erc-rename-buffers'.
+
+ ---
+ *** New faces `erc-my-nick-prefix-face' and `erc-nick-prefix-face'.
+
+ +++
+ *** `erc-format-@nick' displays all user modes instead of only op and voice.
+
+ ---
+ *** The display of irc commands in the current buffer has been disabled.
+
+ ---
+ *** `erc-version' now follows the Emacs version.
+
+ ** Obsolete packages
+
---
*** cc-compat.el
-2015-02-13 Glenn Morris <rgm@gnu.org>
++2015-03-03 Glenn Morris <rgm@gnu.org>
+
+ * textmodes/flyspell.el (flyspell-duplicate-distance):
+ Bump :version.
+
-2015-02-13 Eli Zaretskii <eliz@gnu.org>
++2015-03-03 Eli Zaretskii <eliz@gnu.org>
+
+ * textmodes/text-mode.el (text-mode-syntax-table): Make some
+ punctuation character behave as word-constituent, for more
+ compatibility with Unicode.
+
+ * simple.el (transient-mark-mode): Doc fix. (Bug#19841)
+
-2015-02-12 Agustín Martín Domingo <agustin6martin@gmail.com>
++2015-03-03 Agustín Martín Domingo <agustin6martin@gmail.com>
+
+ Improve string search in `flyspell-word-search-*`. (Bug#16800)
+ * flyspell.el (flyspell-duplicate-distance): Limit default search
+ distance for duplicated words to 40000.
+ (flyspell-word-search-backward, flyspell-word-search-forward):
+ Search as full word with defined casechars, not as substring.
+
-2015-02-10 Juri Linkov <juri@linkov.net>
++2015-03-03 Juri Linkov <juri@linkov.net>
+2015-03-03 Juri Linkov <juri@linkov.net>
Better support for the case of typing RET on the prompt in comint.
-
* comint.el (comint-get-old-input-default): Go to the field end
when comint-use-prompt-regexp is nil.
(comint-line-beginning-position): Check if point is already
-2015-02-13 Glenn Morris <rgm@gnu.org>
++2015-03-03 Glenn Morris <rgm@gnu.org>
+
+ * erc.el (erc-rename-buffers): Doc fix. Add :version.
+
-2015-01-14 Dima Kogan <dima@secretsauce.net>
++2015-03-03 Dima Kogan <dima@secretsauce.net>
+
+ * erc-backend.el (define-erc-response-handler): Give hook-name
+ default value of nil and add-to-list (bug#19363).
+2015-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * erc-spelling.el (erc-spelling-init):
+ Use flyspell-generic-check-word-predicate.
+
+2015-01-28 Dima Kogan <dima@secretsauce.net>
+
+ * erc-backend.el (define-erc-response-handler): Give hook-name
+ default value of nil and add-to-list (bug#19363).
+
+2015-01-22 Paul Eggert <eggert@cs.ucla.edu>
+
+ Don't downcase system diagnostics' first letters
+ * erc-dcc.el (erc-dcc-server): Ignore case while comparing diagnostics.
+
+2014-11-23 Michael Albinus <michael.albinus@gmx.de>
+
+ * erc-desktop-notifications.el (erc-notifications-bus):
+ New customer option. Supports cases when Emacs hasn't been
+ invoked in the same environment where the notifications shall go to.
+ (erc-notifications-notify): Use it.
2014-11-10 Kelvin White <kwhite@gnu.org>
;;*---------------------------------------------------------------------*/
(defun flyspell-word-search-forward (word bound)
(save-excursion
- (let ((r '())
- (inhibit-point-motion-hooks t)
- p)
- (while (and (not r) (setq p (search-forward word bound t)))
- (let ((lw (flyspell-get-word)))
- (if (and (consp lw) (string-equal (car lw) word))
- (setq r p)
- (goto-char (1+ p)))))
+ (let* ((r '())
+ (inhibit-point-motion-hooks t)
+ (flyspell-not-casechars (flyspell-get-not-casechars))
+ (bound (if (and bound
+ (< bound (point-max)))
+ (+ bound 1)))
+ (word-re (concat flyspell-not-casechars
+ (regexp-quote word)
+ "\\(?:" flyspell-not-casechars "\\|\\'\\)"))
+ p)
+ (while
+ (and (not r)
+ (setq p (and
+ (re-search-forward word-re bound t)
+ (if (eobp)
+ (point)
+ (backward-char)
+ (point)))))
+ (let ((lw (flyspell-get-word)))
+ (if (and (consp lw) (string-equal (car lw) word))
+ (setq r p)
+ (goto-char (1+ p)))))
r)))
+(defvar flyspell-word) ;Backward compatibility; some predicates made use of it!
+
;;*---------------------------------------------------------------------*/
;;* flyspell-word ... */
;;*---------------------------------------------------------------------*/
-2015-02-13 Eli Zaretskii <eliz@gnu.org>
++2015-03-03 Eli Zaretskii <eliz@gnu.org>
+
+ * buffer.c (syms_of_buffer): Doc fix. (Bug#19841)
+
-2015-02-08 Eli Zaretskii <eliz@gnu.org>
++2015-03-03 Eli Zaretskii <eliz@gnu.org>
+2015-03-03 Eli Zaretskii <eliz@gnu.org>
* xfaces.c (map_tty_color): Use assoc_no_quit instead of
assq_no_quit to fetch color definition by its string name.