# HG changeset patch # User youngs # Date 1029138268 0 # Node ID 4cbfb36b35e0302f17998864c917933c29093988 # Parent c017b187b1ec75e2cb7ed1608730c3da1146fac9 [xemacs-hg @ 2002-08-12 07:44:28 by youngs] 2002-08-11 John Paul Wallington * simple.el (join-line): New alias for `delete-indentation'. diff -r c017b187b1ec -r 4cbfb36b35e0 lisp/ChangeLog --- a/lisp/ChangeLog Sat Aug 10 06:37:37 2002 +0000 +++ b/lisp/ChangeLog Mon Aug 12 07:44:28 2002 +0000 @@ -1,3 +1,7 @@ +2002-08-11 John Paul Wallington + + * simple.el (join-line): New alias for `delete-indentation'. + 2002-08-03 Steve Youngs * lib-complete.el (find-library): Remove check for mule because diff -r c017b187b1ec -r 4cbfb36b35e0 lisp/simple.el --- a/lisp/simple.el Sat Aug 10 06:37:37 2002 +0000 +++ b/lisp/simple.el Mon Aug 12 07:44:28 2002 +0000 @@ -298,6 +298,8 @@ (delete-region (point) (+ (point) (length fill-prefix)))) (fixup-whitespace)))) +(defalias 'join-line 'delete-indentation) + (defun fixup-whitespace () "Fixup white space between objects around point. Leave one space or none, according to the context."