summaryrefslogtreecommitdiff
path: root/lisp/erc/erc-stamp.el
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2006-01-31 00:24:36 +0000
committerMiles Bader <miles@gnu.org>2006-01-31 00:24:36 +0000
commit360613cb30389de8381180828c12c180e77c790e (patch)
tree476cb938201c5c1e3ebc0ca565b245f86fe5f156 /lisp/erc/erc-stamp.el
parent4cdcdcc9ce7ba9f8644432e755a450b1b62b522a (diff)
downloademacs-360613cb30389de8381180828c12c180e77c790e.tar.gz
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-30
Creator: Michael Olson <mwolson@gnu.org> Merge from erc--main--0 2006-01-30 Michael Olson <mwolson@gnu.org> * erc-stamp.el (erc-timestamp-right-align-by-pixel): New option that determines whether to use pixel values to align right timestamps. The default is not to do so, since it only works with Emacs22 on X, and even then some people have trouble. (erc-insert-aligned): Use `erc-timestamp-right-align-by-pixel'.
Diffstat (limited to 'lisp/erc/erc-stamp.el')
-rw-r--r--lisp/erc/erc-stamp.el14
1 files changed, 10 insertions, 4 deletions
diff --git a/lisp/erc/erc-stamp.el b/lisp/erc/erc-stamp.el
index 767839e343b..afd070e4e06 100644
--- a/lisp/erc/erc-stamp.el
+++ b/lisp/erc/erc-stamp.el
@@ -180,6 +180,14 @@ the correct column."
(integer :tag "Column number")
(const :tag "Unspecified" nil)))
+(defcustom erc-timestamp-right-align-by-pixel nil
+ "*If non-nil, insert the right timestamp based on a pixel value.
+This is needed when variable-width text precedes a timestamp.
+Unfortunately, it only works in Emacs 22 and when using the X
+Window System."
+ :group 'erc-stamp
+ :type 'boolean)
+
(defun erc-insert-timestamp-left (string)
"Insert timestamps at the beginning of the line."
(goto-char (point-min))
@@ -195,11 +203,9 @@ the correct column."
"Insert STRING based on a fraction of the width of the buffer.
Fraction is roughly (/ POS (window-width)).
-If the current version of Emacs doesn't support this, use
+If `erc-timestamp-right-align-by-pixel' is nil, use
\(- POS FALLBACK) to determine how many spaces to insert."
- (if (or (featurep 'xemacs)
- (< emacs-major-version 22)
- (not (eq window-system 'x)))
+ (if (not erc-timestamp-right-align-by-pixel)
(insert (make-string (- pos fallback) ? ) string)
(insert " ")
(let ((offset (floor (* (/ (1- pos) (window-width) 1.0)