aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/rect.el
Commit message (Collapse)AuthorAgeFilesLines
* Add arch taglinesMiles Bader2003-09-011-0/+1
|
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-1/+1
|
* (move-to-column-force): Add autoload cookie to obsolescence declaration.Juanma Barranquero2002-07-181-0/+2
|
* (move-to-column-force): Likewise.Juanma Barranquero2002-06-271-3/+2
|
* (close-rectangle): Don't hide it behind the autoload-cookie.Markus Rost2002-05-071-2/+3
|
* (insert-rectangle): Use insert-for-yank.Richard M. Stallman2002-04-191-1/+1
|
* (replace-rectangle): Add autoload.Richard M. Stallman2002-03-281-0/+1
|
* (clear-rectangle-line): Reindent to the same columnRichard M. Stallman2002-02-261-4/+3
| | | | that move-to-column reached when it tried to go to endcol.
* (move-to-column-force): Mark obsolete.Stefan Monnier2001-11-171-35/+38
| | | | | | | | | (operate-on-rectangle, delete-extract-rectangle-line) (insert-rectangle, delete-whitespace-rectangle-line) (open-rectangle-line, clear-rectangle-line): Use move-to-column. (string-rectangle-history): New var. (string-rectangle, string-insert-rectangle): Use it. (delete-rectangle-line): Fix pos/column mixup and simplify.
* Update maintainer's email address.Eli Zaretskii2001-10-031-2/+2
|
* Some fixes to follow coding conventions.Pavel Janík2001-07-161-1/+1
|
* (string-rectangle): Revert to 20.x behaviour.Gerd Moellmann2001-04-241-23/+20
| | | | | (replace-rectangle): Make it an alias for string-rectangle. (string-insert-rectangle): New function.
* (string-rectangle): Don't test delete-selection-mode.Dave Love2000-11-231-2/+7
|
* (string-rectangle): Revert last change.Dave Love2000-11-221-3/+6
| | | | | (string-rectangle-line): New arg DELETE. (string-rectangle): Check delete-selection-mode.
* (replace-rectangle): Don't call string-rectangle-lineGerd Moellmann2000-11-221-1/+1
| | | | with too many arguments.
* (open-rectangle-line): Remove unused let.Dave Love2000-07-181-7/+5
|
* 2000-09-01 Didier Verna <[email protected]>Dave Love2000-03-091-0/+6
| | | | * rect.el (replace-rectangle): New function.
* (delete-extract-rectangle): Doc fix from verna.Dave Love1999-08-231-1/+1
|
* Add/fix various doc strings. Add `*' to all the interactive specs.Dave Love1999-08-231-35/+41
|
* (delete-rectangle-line): Use line-end-position.Karl Heuer1999-08-161-1/+1
|
* All functions rewritten, except when noted aboveRichard M. Stallman1999-08-031-121/+191
| | | | | | | | | | | | | | | | | | their declaration. Below is a list of interface changes. (apply-on-rectangle): New function, mostly replaces `operate-on-rectangle'. All callers changed. (move-to-column-force): Pass new second argument to `move-to-column'. (kill-rectangle): Added optional prefix arg to fill lines. (delete-rectangle): Ditto. (delete-whitespace-rectangle): Ditto. (delete-extract-rectangle): Ditto. (open-rectangle): Ditto. (clear-rectangle): Ditto. (delete-whitespace-rectangle-line): New function. (delete-rectangle-line): Added third arg FILL. (delete-extract-rectangle-line): Ditto. (open-rectangle-line): Ditto. (clear-rectangle-line): Ditto.
* (delete-whitespace-rectangle): Mark for autoload.Andreas Schwab1998-12-031-1/+1
| | | | (close-rectangle): Define alias only once in loaddefs.el.
* (move-to-column-force): New function.Kenichi Handa1998-11-241-3/+24
| | | | | | | | | (operate-on-rectangle): If coerce-tabs is non-nil, call move-to-column-force instead of move-to-column. (insert-rectangle): Call move-to-column-force instead of move-to-column. (open-rectangle-line): If begextra is not zero, call move-to-column-force.
* (delete-whitespace-rectangle): close-rectangle renamed.Karl Heuer1998-11-051-1/+2
| | | | (close-rectangle): Define as alias.
* (string-rectangle-line): Delete the rectangle first.Richard M. Stallman1998-06-061-4/+4
| | | | (string-rectangle): Doc fix.
* (string-rectangle-string): New variable.Richard M. Stallman1998-05-241-7/+15
| | | | | | | | (string-rectangle): Bind it. (string-rectangle-line): Use it. (operate-on-rectangle-lines): New variable. (extract-rectangle-line): Update it. (delete-extract-rectangle, extract-rectangle): Bind and use it.
* (close-rectangle): New command.Richard M. Stallman1998-05-241-0/+17
|
* (operate-on-rectangle): If we overshoot when looking for endcol, back up.Richard M. Stallman1997-09-031-0/+4
|
* Update FSF's address.Erik Naggum1996-01-141-2/+3
|
* (string-rectangle): Don't set point.Richard M. Stallman1994-11-091-2/+1
|
* (kill-rectangle): In read-only buffer, do recordRichard M. Stallman1994-10-021-0/+4
| | | | the rectangle for later yanking.
* Update copyright.Karl Heuer1994-05-031-1/+1
|
* (string-rectangle): Make operate-on-rectangle convert tabs.Richard M. Stallman1994-02-051-33/+38
| | | | | | | (string-rectangle-line): After inserting string, insert the same width of whitespace that we deleted earlier. (operate-on-rectangle): Operate even if width is 0. (open-rectangle-line): Clean up.
* (string-rectangle): Renamed from fill-rectangle.Richard M. Stallman1993-05-031-10/+10
| | | | (string-rectangle-line): Renamed from fill-rectangle-line.
* (fill-rectangle) Added. Inspired by Lynn Slater's insert-box package in LCD,Eric S. Raymond1993-03-271-0/+24
| | | | but the interface and implementation are different.
* Added or corrected Commentary sectionsEric S. Raymond1993-03-221-0/+5
|
* * rect.el (operate-on-rectangle): Use move-to-column's FORCEJim Blandy1992-11-161-25/+11
| | | | | | | | | | | | argument instead of implementing it ourselves. (rectangle-coerce-tab): No longer used; deleted. * rect.el (open-rectangle): Leave point at the upper corner of the rectangle just opened, in imitation of open-line. Fix doc typo. (open-rectangle-line): Use skip-chars-backward's LIM argument to leave spaces before the line segment's beginning undisturbed. * rect.el: Provide 'rect.
* (insert-rectangle): Put mark at upper left corner.Richard M. Stallman1992-11-031-1/+4
|
* entered into RCSEric S. Raymond1992-07-221-3/+2
|
* *** empty log message ***Eric S. Raymond1992-07-171-0/+1
|
* *** empty log message ***Eric S. Raymond1992-07-161-2/+2
|
* *** empty log message ***Eric S. Raymond1992-07-151-0/+4
|
* *** empty log message ***Eric S. Raymond1992-05-301-1/+4
|
* *** empty log message ***Jim Blandy1991-05-091-0/+8
|
* *** empty log message ***Richard M. Stallman1991-04-121-6/+5
|
* Initial revisionJoseph Arceneaux1989-10-311-0/+205