comparison lisp/erc/erc-stamp.el @ 85845:e95712050fdc

Silence some byte-compiler warnings in ERC
author Michael Olson <mwolson@gnu.org>
date Thu, 01 Nov 2007 01:12:59 +0000
parents 4ee03308c9b6
children e50a2e215441
comparison
equal deleted inserted replaced
85844:cf0d3de08293 85845:e95712050fdc
261 (indent-to pos) 261 (indent-to pos)
262 (insert " ") 262 (insert " ")
263 (put-text-property (1- (point)) (point) 'display 263 (put-text-property (1- (point)) (point) 'display
264 (list 'space ':align-to pos))) 264 (list 'space ':align-to pos)))
265 (insert string)) 265 (insert string))
266
267 ;; Silence byte-compiler
268 (eval-when-compile
269 (defvar erc-fill-column))
266 270
267 (defun erc-insert-timestamp-right (string) 271 (defun erc-insert-timestamp-right (string)
268 "Insert timestamp on the right side of the screen. 272 "Insert timestamp on the right side of the screen.
269 STRING is the timestamp to insert. The function is a possible value 273 STRING is the timestamp to insert. The function is a possible value
270 for `erc-insert-timestamp-function'. 274 for `erc-insert-timestamp-function'.