diff options
| author | Paul Eggert | 2015-03-29 14:14:15 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-03-29 14:14:15 -0700 |
| commit | 0479a1b62ceeb9586168146e2c8f49f2a5ebaf2f (patch) | |
| tree | 1fd646daf290a63564bd8823b8a0ba32e8190ae3 | |
| parent | 4a7004369824ea46fd5222a3f57cf3ee67e988e0 (diff) | |
| parent | 5e0314f6fabca1af214240177a28d3822d6ef3e5 (diff) | |
| download | emacs-0479a1b62ceeb9586168146e2c8f49f2a5ebaf2f.tar.gz emacs-0479a1b62ceeb9586168146e2c8f49f2a5ebaf2f.zip | |
Merge from origin/emacs-24
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
| -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 @@ | |||
| 1 | 2015-03-29 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * objects.texi (Equality Predicates): Fix typo in example. | ||
| 4 | |||
| 1 | 2015-03-25 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2015-03-25 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * positions.texi (Excursions, Narrowing): `save-excursion' does not | 7 | * 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. | |||
| 2135 | 2135 | ||
| 2136 | @example | 2136 | @example |
| 2137 | @group | 2137 | @group |
| 2138 | (equal "asdf" (propertize "asdf" '(asdf t))) | 2138 | (equal "asdf" (propertize "asdf" 'asdf t)) |
| 2139 | @result{} t | 2139 | @result{} t |
| 2140 | @end group | 2140 | @end group |
| 2141 | @group | 2141 | @group |
| 2142 | (equal-including-properties "asdf" | 2142 | (equal-including-properties "asdf" |
| 2143 | (propertize "asdf" '(asdf t))) | 2143 | (propertize "asdf" 'asdf t)) |
| 2144 | @result{} nil | 2144 | @result{} nil |
| 2145 | @end group | 2145 | @end group |
| 2146 | @end example | 2146 | @end example |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c8e84a3c729..fd346f05afb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2015-03-29 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/smie.el (smie-backward-sexp-command) | ||
| 4 | (smie-forward-sexp-command): Don't pretend the arg is optional | ||
| 5 | (bug#20205). | ||
| 6 | |||
| 7 | 2015-03-29 Dmitry Gutov <dgutov@yandex.ru> | ||
| 8 | |||
| 9 | * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re): | ||
| 10 | Detect regexps after `!'. (Bug#19285) | ||
| 11 | |||
| 12 | * progmodes/ruby-mode.el (ruby-font-lock-keywords): | ||
| 13 | Use `font-lock-constant-face' for nil, true and false. | ||
| 14 | Highlight `self' as a keyword. (Bug#17733) | ||
| 15 | |||
| 16 | 2015-03-29 Nobuyoshi Nakada <nobu@ruby-lang.org> | ||
| 17 | |||
| 18 | * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re): | ||
| 19 | Expect beginning of regexp also after open brace or vertical bar. | ||
| 20 | (Bug#20026) | ||
| 21 | |||
| 1 | 2015-03-28 Jan Djärv <jan.h.d@swipnet.se> | 22 | 2015-03-28 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 23 | ||
| 3 | * emacs-lisp/package.el (package-refresh-contents): Fix spelling | 24 | * 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: | |||
| 837 | 837 | ||
| 838 | ;;; Miscellaneous commands using the precedence parser. | 838 | ;;; Miscellaneous commands using the precedence parser. |
| 839 | 839 | ||
| 840 | (defun smie-backward-sexp-command (&optional n) | 840 | (defun smie-backward-sexp-command (n) |
| 841 | "Move backward through N logical elements." | 841 | "Move backward through N logical elements." |
| 842 | (interactive "^p") | 842 | (interactive "^p") |
| 843 | (smie-forward-sexp-command (- n))) | 843 | (smie-forward-sexp-command (- n))) |
| 844 | 844 | ||
| 845 | (defun smie-forward-sexp-command (&optional n) | 845 | (defun smie-forward-sexp-command (n) |
| 846 | "Move forward through N logical elements." | 846 | "Move forward through N logical elements." |
| 847 | (interactive "^p") | 847 | (interactive "^p") |
| 848 | (let ((forw (> n 0)) | 848 | (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 @@ | |||
| 1 | 2015-03-29 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * gtkutil.c (update_theme_scrollbar_width): Don't round up | ||
| 4 | scroll bar width with GTK3 (Bug#20182). | ||
| 5 | |||
| 1 | 2015-03-28 Jan Djärv <jan.h.d@swipnet.se> | 6 | 2015-03-28 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 7 | ||
| 3 | * xsmfns.c (smc_save_yourself_CB): Return if Vinvocation_name or | 8 | * 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) | |||
| 3516 | gtk_widget_destroy (wscroll); | 3516 | gtk_widget_destroy (wscroll); |
| 3517 | g_object_unref (G_OBJECT (wscroll)); | 3517 | g_object_unref (G_OBJECT (wscroll)); |
| 3518 | w += 2*b; | 3518 | w += 2*b; |
| 3519 | #ifndef HAVE_GTK3 | ||
| 3519 | if (w < 16) w = 16; | 3520 | if (w < 16) w = 16; |
| 3521 | #endif | ||
| 3520 | scroll_bar_width_for_theme = w; | 3522 | scroll_bar_width_for_theme = w; |
| 3521 | } | 3523 | } |
| 3522 | 3524 | ||