aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBozhidar Batsov2013-12-20 18:21:45 +0200
committerBozhidar Batsov2013-12-20 18:21:45 +0200
commit131e4695b2fc814c27e806860d9f4da8673ff505 (patch)
treedbc83f588acc65da2ac66e42281cb01cc1b74f32
parentf60bb26a56156735261ef2ff6d014b2f047e3319 (diff)
downloademacs-131e4695b2fc814c27e806860d9f4da8673ff505.tar.gz
emacs-131e4695b2fc814c27e806860d9f4da8673ff505.zip
* lisp/emacs-lisp/subr-x.el: Renamed from helpers.el.
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/subr-x.el (renamed from lisp/emacs-lisp/helpers.el)10
3 files changed, 13 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index ff3741f4e20..49ad61d9fdb 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -875,7 +875,7 @@ frame.
875+++ 875+++
876** New macro with-eval-after-load. Like eval-after-load, but better behaved. 876** New macro with-eval-after-load. Like eval-after-load, but better behaved.
877 877
878** New library helpers.el for misc helper functions 878** New library subr-x.el for misc helper functions
879*** `hash-table-keys' 879*** `hash-table-keys'
880*** `hash-table-values' 880*** `hash-table-values'
881*** `string-blank-p` 881*** `string-blank-p`
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 00e0864a5fd..8b3a15e1bc9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
2
3 * emacs-lisp/subr-x.el: Renamed from helpers.el.
4 helpers.el was a poor choice of name.
5
12013-12-20 Martin Rudalics <rudalics@gmx.at> 62013-12-20 Martin Rudalics <rudalics@gmx.at>
2 7
3 Fix assignment for new window total sizes. 8 Fix assignment for new window total sizes.
diff --git a/lisp/emacs-lisp/helpers.el b/lisp/emacs-lisp/subr-x.el
index b7996ade777..07e47794134 100644
--- a/lisp/emacs-lisp/helpers.el
+++ b/lisp/emacs-lisp/subr-x.el
@@ -1,4 +1,4 @@
1;;; helpers.el --- Some non-essential library extensions -*- lexical-binding:t -*- 1;;; subr-x.el --- extra Lisp functions -*- lexical-binding:t -*-
2 2
3;; Copyright (C) 2013 Free Software Foundation, Inc. 3;; Copyright (C) 2013 Free Software Foundation, Inc.
4 4
@@ -23,6 +23,10 @@
23 23
24;;; Commentary: 24;;; Commentary:
25 25
26;; Less commonly used functions that complement basic APIs, often implemented in
27;; C code (like hash-tables and strings), and are not eligible for inclusion
28;; in subr.el.
29
26;;; Code: 30;;; Code:
27 31
28(defsubst hash-table-keys (hash-table) 32(defsubst hash-table-keys (hash-table)
@@ -69,6 +73,6 @@
69 "Check whether STRING is either empty or only whitespace." 73 "Check whether STRING is either empty or only whitespace."
70 (string-match-p "\\`[ \t\n\r]*\\'" string)) 74 (string-match-p "\\`[ \t\n\r]*\\'" string))
71 75
72(provide 'helpers) 76(provide 'subr-x)
73 77
74;;; helpers.el ends here 78;;; subr-x.el ends here