changeset 93747:63ab93d290d1

(abort-if-file-too-large): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Sat, 05 Apr 2008 21:10:34 +0000
parents 074f3abdee88
children e21ebdb02185
files lisp/files.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/files.el	Sat Apr 05 21:08:50 2008 +0000
+++ b/lisp/files.el	Sat Apr 05 21:10:34 2008 +0000
@@ -1508,7 +1508,7 @@
   :type '(choice integer (const :tag "Never request confirmation" nil)))
 
 (defun abort-if-file-too-large (size op-type)
-  "If file SIZE larger than LARGE-FILE-WARNING-THRESHOLD, allow user to abort.
+  "If file SIZE larger than `large-file-warning-threshold', allow user to abort.
 OP-TYPE specifies the file operation being performed (for message to user)."
   (when (and large-file-warning-threshold size
 	   (> size large-file-warning-threshold)