Do not document subr-x.el in the manuals
* doc/lispref/hash.texi (Other Hash): Do not mention subr-x.el functions; reverts 2013-12-22 change. * lisp/emacs-lisp/subr-x.el: Comment. * etc/NEWS: Small related edits.
This commit is contained in:
parent
a6c4680aa2
commit
64295f83c5
4 changed files with 11 additions and 16 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-01-20 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* hash.texi (Other Hash): Do not mention subr-x.el functions;
|
||||
reverts 2013-12-22 change.
|
||||
|
||||
2014-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* functions.texi (Advising Functions): New section.
|
||||
|
|
|
@ -353,14 +353,3 @@ This returns the rehash threshold of @var{table}.
|
|||
@defun hash-table-size table
|
||||
This returns the current nominal size of @var{table}.
|
||||
@end defun
|
||||
|
||||
The following two functions are provided by the @file{subr-x} library.
|
||||
To use them, you need to load this library first.
|
||||
|
||||
@defun hash-table-keys hash-table
|
||||
This returns a list of keys in @var{hash-table}.
|
||||
@end defun
|
||||
|
||||
@defun hash-table-values hash-table
|
||||
This returns a list of values in @var{hash-table}.
|
||||
@end defun
|
||||
|
|
8
etc/NEWS
8
etc/NEWS
|
@ -1081,12 +1081,10 @@ displaying the buffer in a window.
|
|||
** New macro `with-eval-after-load'.
|
||||
This is like the old `eval-after-load', but better behaved.
|
||||
|
||||
** New library subr-x.el for misc helper functions
|
||||
+++
|
||||
*** `hash-table-keys'
|
||||
+++
|
||||
*** `hash-table-values'
|
||||
---
|
||||
** New library subr-x.el with miscellaneous small utility functions
|
||||
*** `hash-table-keys'
|
||||
*** `hash-table-values'
|
||||
*** `string-blank-p`
|
||||
*** `string-empty-p`
|
||||
*** `string-join`
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
;; C code (like hash-tables and strings), and are not eligible for inclusion
|
||||
;; in subr.el.
|
||||
|
||||
;; Do not document these functions in the lispref.
|
||||
;; http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01006.html
|
||||
|
||||
;;; Code:
|
||||
|
||||
(defsubst hash-table-keys (hash-table)
|
||||
|
|
Loading…
Add table
Reference in a new issue