diff options
| author | Gerd Moellmann | 2000-12-15 13:00:59 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-12-15 13:00:59 +0000 |
| commit | c47e669ba8b6bb40dce5f0f72f4cc556f146dbdc (patch) | |
| tree | f66cb5b94cccf161b00810ee50cafed6b259c40d | |
| parent | 0c28d8421ee7939fad2d8910f2b042b74b1bb001 (diff) | |
| download | emacs-c47e669ba8b6bb40dce5f0f72f4cc556f146dbdc.tar.gz emacs-c47e669ba8b6bb40dce5f0f72f4cc556f146dbdc.zip | |
(sort-columns): Fix error message.
| -rw-r--r-- | lisp/sort.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/sort.el b/lisp/sort.el index 57a3643c4da..33f523c9533 100644 --- a/lisp/sort.el +++ b/lisp/sort.el | |||
| @@ -486,7 +486,7 @@ Use \\[untabify] to convert tabs to spaces before sorting." | |||
| 486 | (setq col-start (min col-beg1 col-end1)) | 486 | (setq col-start (min col-beg1 col-end1)) |
| 487 | (setq col-end (max col-beg1 col-end1)) | 487 | (setq col-end (max col-beg1 col-end1)) |
| 488 | (if (search-backward "\t" beg1 t) | 488 | (if (search-backward "\t" beg1 t) |
| 489 | (error "sort-columns does not work with tabs. Use M-x untabify")) | 489 | (error "sort-columns does not work with tabs -- use M-x untabify")) |
| 490 | (if (not (or (eq system-type 'vax-vms) | 490 | (if (not (or (eq system-type 'vax-vms) |
| 491 | (text-properties-at beg1) | 491 | (text-properties-at beg1) |
| 492 | (< (next-property-change beg1 nil end1) end1))) | 492 | (< (next-property-change beg1 nil end1) end1))) |