comparison lisp/dired.el @ 64430:52b011251c32

(dired-log): Use `insert-buffer-substring', not `insert-buffer'.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 18 Jul 2005 10:24:58 +0000
parents 7fc36b055c09
children 11d53eaa016c
comparison
equal deleted inserted replaced
64429:dd1d759e63db 64430:52b011251c32
3002 (cond ((stringp log) 3002 (cond ((stringp log)
3003 (insert (if args 3003 (insert (if args
3004 (apply (function format) log args) 3004 (apply (function format) log args)
3005 log))) 3005 log)))
3006 ((bufferp log) 3006 ((bufferp log)
3007 (insert-buffer log)) 3007 (insert-buffer-substring log))
3008 ((eq t log) 3008 ((eq t log)
3009 (backward-page 1) 3009 (backward-page 1)
3010 (unless (bolp) 3010 (unless (bolp)
3011 (insert "\n")) 3011 (insert "\n"))
3012 (insert (current-time-string) 3012 (insert (current-time-string)