diff options
-rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
-rw-r--r-- | doc/lispref/objects.texi | 4 | ||||
-rw-r--r-- | lisp/ChangeLog | 21 | ||||
-rw-r--r-- | lisp/emacs-lisp/smie.el | 4 | ||||
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/gtkutil.c | 2 |
6 files changed, 36 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 9e1b7b074e2..c24bb646fa6 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -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 diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index b28b3b00898..f4beca822cd 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi @@ -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 diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c8e84a3c729..fd346f05afb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el index 48bded4e3a6..1bc5eb28720 100644 --- a/lisp/emacs-lisp/smie.el +++ b/lisp/emacs-lisp/smie.el @@ -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)) diff --git a/src/ChangeLog b/src/ChangeLog index 7874910c813..c11ecb7e3ae 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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 diff --git a/src/gtkutil.c b/src/gtkutil.c index 6f1707894c1..061af7baa9a 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -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; } |