]> git.eshelyaron.com Git - emacs.git/commitdiff
(abort-if-file-too-large): Fix typo in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 5 Apr 2008 21:15:20 +0000 (21:15 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 5 Apr 2008 21:15:20 +0000 (21:15 +0000)
lisp/ChangeLog
lisp/files.el

index 937a10021ba8665184224a5314100ee6dc12a85d..564a7bac44c8ee0fb8aa68bb34f74919f517e8ad 100644 (file)
@@ -1,3 +1,7 @@
+2008-04-05  Juanma Barranquero  <lekktu@gmail.com>
+
+       * files.el (abort-if-file-too-large): Fix typo in docstring.
+
 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * subr.el (functionp): Return nil for special forms.
@@ -22,8 +26,8 @@
        * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
        (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
 
-       * calendar/calendar.el (diary-hebrew-entry-symbol): Rename
-       hebrew-diary-entry-symbol.  Keep old name as alias.
+       * calendar/calendar.el (diary-hebrew-entry-symbol):
+       Rename hebrew-diary-entry-symbol.  Keep old name as alias.
        (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
        Keep old name as alias.
        (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
        Rename all-christian-calendar-holidays.  Update callers, keep old
        name as alias.
        (calendar-islamic-all-holidays-flag):
-       Rename all-islamic-calendar-holidays.   Update callers, keep old
+       Rename all-islamic-calendar-holidays.  Update callers, keep old
        name as alias.
        (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
        Update callers, keep old name as alias.
index 34f297631717add3614f08dbc3a53136e55c3422..a9beff39862e0e71a7b601172aae9450b914efc9 100644 (file)
@@ -1508,7 +1508,7 @@ When nil, never request confirmation."
   :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)