aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-12-15 13:00:59 +0000
committerGerd Moellmann <[email protected]>2000-12-15 13:00:59 +0000
commitc47e669ba8b6bb40dce5f0f72f4cc556f146dbdc (patch)
treef66cb5b94cccf161b00810ee50cafed6b259c40d
parent0c28d8421ee7939fad2d8910f2b042b74b1bb001 (diff)
(sort-columns): Fix error message.
-rw-r--r--lisp/sort.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/sort.el b/lisp/sort.el
index 57a3643c4d..33f523c953 100644
--- a/lisp/sort.el
+++ b/lisp/sort.el
@@ -486,7 +486,7 @@ Use \\[untabify] to convert tabs to spaces before sorting."
(setq col-start (min col-beg1 col-end1))
(setq col-end (max col-beg1 col-end1))
(if (search-backward "\t" beg1 t)
- (error "sort-columns does not work with tabs. Use M-x untabify"))
+ (error "sort-columns does not work with tabs -- use M-x untabify"))
(if (not (or (eq system-type 'vax-vms)
(text-properties-at beg1)
(< (next-property-change beg1 nil end1) end1)))