diff lispref/hash.texi @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000
parents 4d3fd773cd30
children b29f076f791a d7ddb3e565de
line wrap: on
line diff
--- a/lispref/hash.texi	Tue Feb 04 13:30:45 2003 +0000
+++ b/lispref/hash.texi	Tue Feb 04 14:56:31 2003 +0000
@@ -1,6 +1,6 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1999 Free Software Foundation, Inc. 
+@c Copyright (C) 1999 Free Software Foundation, Inc.
 @c See the file elisp.texi for copying conditions.
 @setfilename ../info/hash
 @node Hash Tables, Symbols, Sequences Arrays Vectors, Top
@@ -176,7 +176,7 @@
 @end defun
 
 @tindex puthash
-@defun puthash key value table 
+@defun puthash key value table
 This function enters an association for @var{key} in @var{table}, with
 value @var{value}.  If @var{key} already has an association in
 @var{table}, @var{value} replaces the old associated value.
@@ -270,7 +270,7 @@
 (defun case-fold-string-hash (a)
   (sxhash (upcase a)))
 
-(define-hash-table-test 'case-fold 'case-fold-string= 
+(define-hash-table-test 'case-fold 'case-fold-string=
                         'case-fold-string-hash))
 
 (make-hash-table :test 'case-fold)