]> code.delx.au - gnu-emacs/commitdiff
Merge from origin/emacs-24
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 29 Mar 2015 21:14:15 +0000 (14:14 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 29 Mar 2015 21:14:15 +0000 (14:14 -0700)
5e0314f * smie.el (smie*ward-sexp-command): Don't pretend the arg is optional
13cf575 Don't round up scroll bar width with GTK3 (Bug#20182).
921dd0d * doc/lispref/objects.texi (Equality Predicates): Fix typo in example.

Conflicts:
doc/lispref/ChangeLog
lisp/ChangeLog
src/ChangeLog

doc/lispref/ChangeLog
doc/lispref/objects.texi
lisp/ChangeLog
lisp/emacs-lisp/smie.el
src/ChangeLog
src/gtkutil.c

index 9e1b7b074e2a8110879be746730eb1ac221e643a..c24bb646fa6263f9fbf021755b3e9db046528b77 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-29  Glenn Morris  <rgm@gnu.org>
+
+       * objects.texi (Equality Predicates): Fix typo in example.
+
 2015-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * positions.texi (Excursions, Narrowing): `save-excursion' does not
index b28b3b00898a896db86ebdee235d29039dd4bb39..f4beca822cdb2b43ec04db6cc0bcaa7921e7636a 100644 (file)
@@ -2135,12 +2135,12 @@ that for two strings to be equal, they have the same text properties.
 
 @example
 @group
-(equal "asdf" (propertize "asdf" '(asdf t)))
+(equal "asdf" (propertize "asdf" 'asdf t))
      @result{} t
 @end group
 @group
 (equal-including-properties "asdf"
-                            (propertize "asdf" '(asdf t)))
+                            (propertize "asdf" 'asdf t))
      @result{} nil
 @end group
 @end example
index c8e84a3c72938b6f315bac60024bb74286239f0a..fd346f05afbaeec80e95c0457d30593092b1bfc3 100644 (file)
@@ -1,3 +1,24 @@
+2015-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/smie.el (smie-backward-sexp-command)
+       (smie-forward-sexp-command): Don't pretend the arg is optional
+       (bug#20205).
+
+2015-03-29  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
+       Detect regexps after `!'.  (Bug#19285)
+
+       * progmodes/ruby-mode.el (ruby-font-lock-keywords):
+       Use `font-lock-constant-face' for nil, true and false.
+       Highlight `self' as a keyword.  (Bug#17733)
+
+2015-03-29  Nobuyoshi Nakada  <nobu@ruby-lang.org>
+
+       * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
+       Expect beginning of regexp also after open brace or vertical bar.
+       (Bug#20026)
+
 2015-03-28  Jan Djärv  <jan.h.d@swipnet.se>
 
        * emacs-lisp/package.el (package-refresh-contents): Fix spelling
index 48bded4e3a6545dcbcb52e4a07651d2191cc57df..1bc5eb287202a96db43624869df0d971b7905b68 100644 (file)
@@ -837,12 +837,12 @@ Possible return values:
 
 ;;; Miscellaneous commands using the precedence parser.
 
-(defun smie-backward-sexp-command (&optional n)
+(defun smie-backward-sexp-command (n)
   "Move backward through N logical elements."
   (interactive "^p")
   (smie-forward-sexp-command (- n)))
 
-(defun smie-forward-sexp-command (&optional n)
+(defun smie-forward-sexp-command (n)
   "Move forward through N logical elements."
   (interactive "^p")
   (let ((forw (> n 0))
index 7874910c8136abf6ea3180cb1d7f80bd900ab825..c11ecb7e3ae7d94ccdb53a16487eba09fd837374 100644 (file)
@@ -1,3 +1,8 @@
+2015-03-29  Martin Rudalics  <rudalics@gmx.at>
+
+       * gtkutil.c (update_theme_scrollbar_width): Don't round up
+       scroll bar width with GTK3 (Bug#20182).
+
 2015-03-28  Jan Djärv  <jan.h.d@swipnet.se>
 
        * xsmfns.c (smc_save_yourself_CB): Return if Vinvocation_name or
index 6f1707894c116ecb4d8fe7a1beb4cc946b586f8e..061af7baa9ad5890d5639852440605007743ba18 100644 (file)
@@ -3516,7 +3516,9 @@ update_theme_scrollbar_width (void)
   gtk_widget_destroy (wscroll);
   g_object_unref (G_OBJECT (wscroll));
   w += 2*b;
+#ifndef HAVE_GTK3
   if (w < 16) w = 16;
+#endif
   scroll_bar_width_for_theme = w;
 }