diff lisp/config.el @ 272:c5d627a313b1 r21-0b34

Import from CVS: tag r21-0b34
author cvs
date Mon, 13 Aug 2007 10:28:48 +0200
parents d44af0c54775
children 3b3709405255
line wrap: on
line diff
--- a/lisp/config.el	Mon Aug 13 10:27:41 2007 +0200
+++ b/lisp/config.el	Mon Aug 13 10:28:48 2007 +0200
@@ -37,7 +37,7 @@
 
 ;;;###autoload
 (defun config-value-hash-table ()
-  "Returns hashtable of configuration parameters and their values."
+  "Return hashtable of configuration parameters and their values."
   (when (null config-value-hash-table)
     (setq config-value-hash-table (make-hashtable 300))
     (save-excursion
@@ -65,6 +65,6 @@
 (defun config-value (config-symbol)
   "Return the value of the configuration parameter CONFIG_SYMBOL."
   (gethash config-symbol (config-value-hash-table)))
-      
+
 (provide 'config)
 ;;; config.el ends here