aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBozhidar Batsov2013-11-26 12:38:19 +0200
committerBozhidar Batsov2013-11-26 12:38:19 +0200
commit4e9fc48c06eef312b81764ff235293bfe2be594b (patch)
tree2b6dc9e18e84486ae47799aa8265b87a0fe6bc3a
parent1ecfd96e0f976da520a1ee7f5a9b120fd999f65f (diff)
downloademacs-4e9fc48c06eef312b81764ff235293bfe2be594b.tar.gz
emacs-4e9fc48c06eef312b81764ff235293bfe2be594b.zip
Improve a couple of changelog entries.
-rw-r--r--lisp/ChangeLog20
-rw-r--r--test/ChangeLog7
2 files changed, 19 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4e6442f8952..25dcbc67ab7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -307,9 +307,13 @@
307 * subr.el (version-regexp-alist): 307 * subr.el (version-regexp-alist):
308 Recognize hg, svn and darcs versions as snapshot versions. 308 Recognize hg, svn and darcs versions as snapshot versions.
309 309
310 * progmodes/ruby-mode.el (ruby-mode-set-encoding): 310 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
311 Add the ability to always insert an utf-8 encoding comment. 311 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
312 Fix and simplify coding comment update logic. 312 (ruby--encoding-comment-required-p): Extract from
313 `ruby-mode-set-encoding'.
314 (ruby-mode-set-encoding): Add the ability to always insert an
315 utf-8 encoding comment. Fix and simplify coding comment update
316 logic.
313 317
3142013-11-14 Michael Albinus <michael.albinus@gmx.de> 3182013-11-14 Michael Albinus <michael.albinus@gmx.de>
315 319
@@ -455,9 +459,13 @@
455 459
4562013-11-08 Bozhidar Batsov <bozhidar@batsov.com> 4602013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
457 461
458 * progmodes/ruby-mode.el (ruby-mode-set-encoding): 462 * progmodes/ruby-mode.el: Improve encoding comment handling.
459 Use `ruby-encoding-magic-comment-style' to control the 463 (ruby-encoding-magic-comment-style): New option.
460 style of the auto-inserted encoding comment. 464 (ruby-custom-encoding-magic-comment-template): New option.
465 (ruby--insert-coding-comment, ruby--detect-encoding): New
466 functions extracted from `ruby-mode-set-encoding'.
467 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
468 to control the style of the auto-inserted encoding comment.
461 469
4622013-11-08 Dmitry Gutov <dgutov@yandex.ru> 4702013-11-08 Dmitry Gutov <dgutov@yandex.ru>
463 471
diff --git a/test/ChangeLog b/test/ChangeLog
index a0c17f6cfb7..d22c47f62df 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -28,9 +28,12 @@
28 28
292013-11-20 Bozhidar Batsov <bozhidar@batsov.com> 292013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
30 30
31 * test/automated/ruby-mode-tests.el: 31 * test/automated/ruby-mode-tests.el (ruby-exit!-font-lock):
32 Add a failing test for Bug#15874. 32 Add a failing test for Bug#15874.
33 * test/automated/ruby-mode-tests.el: 33 * test/automated/ruby-mode-tests.el
34 (ruby--insert-coding-comment-ruby-style)
35 (ruby--insert-coding-comment-emacs-style)
36 (ruby--insert-coding-comment-custom-style):
34 Add a few tests for `ruby--insert-coding-comment'. 37 Add a few tests for `ruby--insert-coding-comment'.
35 38
362013-11-18 Paul Eggert <eggert@cs.ucla.edu> 392013-11-18 Paul Eggert <eggert@cs.ucla.edu>