home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 5 Edit
/
05-Edit.zip
/
me34src.zip
/
me3
/
mutt
/
builtin
/
block.mut
< prev
next >
Wrap
Text File
|
1995-01-14
|
481b
|
21 lines
;; block.mut : routines to operate on blocks
;; C Durland Public Domain
;; !!! This really needs to take two marks and a bag id but I don't want to
;; figure out how to do the same thing as cut-line.
(include me.mh)
(defun
delete-region-as-block HIDDEN
{
(byte type)(small-int left-edge width height)(int size) ;; RegionInfo
(region-stats (loc type) THE-DOT THE-MARK TRUE)
(beginning-of-line)
(clear-bag CUT-BUFFER)
(arg-prefix height)(cut-line)
}
)