diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2011-01-18 16:25:41 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2011-01-18 16:25:41 +0000 |
commit | 96d64c06e48f39d450e390fcd67a41778a97945e (patch) | |
tree | 51673c683979d59ad353eb526cfb203cabc32189 /usr.bin/mg/def.h | |
parent | 249d2fa75589fafb352e1fcce62e56ef3725d855 (diff) |
Add join-line, bound to M-^
Join the current line to the previous.
original diff by Henri Kemppainen. minor mod to add undo boundaries.
Thanks!
Diffstat (limited to 'usr.bin/mg/def.h')
-rw-r--r-- | usr.bin/mg/def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h index d9abec3e367..ef26daa3595 100644 --- a/usr.bin/mg/def.h +++ b/usr.bin/mg/def.h @@ -1,4 +1,4 @@ -/* $OpenBSD: def.h,v 1.114 2011/01/17 03:12:06 kjell Exp $ */ +/* $OpenBSD: def.h,v 1.115 2011/01/18 16:25:40 kjell Exp $ */ /* This file is in the public domain. */ @@ -512,6 +512,7 @@ int forwdel(int, int); int backdel(int, int); int space_to_tabstop(int, int); int backtoindent(int, int); +int joinline(int, int); /* extend.c X */ int insert(int, int); |