From: Juanma Barranquero Date: Sat, 5 Apr 2008 21:15:20 +0000 (+0000) Subject: (abort-if-file-too-large): Fix typo in docstring. X-Git-Tag: emacs-pretest-23.0.90~6511 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=afe9998d567026eaf54f64da781f732eb7caf427;p=emacs.git (abort-if-file-too-large): Fix typo in docstring. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 937a10021ba..564a7bac44c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-04-05 Juanma Barranquero + + * files.el (abort-if-file-too-large): Fix typo in docstring. + 2008-04-05 Stefan Monnier * 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. @@ -459,7 +463,7 @@ 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. diff --git a/lisp/files.el b/lisp/files.el index 34f29763171..a9beff39862 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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)