changeset 958:4cbfb36b35e0

[xemacs-hg @ 2002-08-12 07:44:28 by youngs] 2002-08-11 John Paul Wallington <jpw@shootybangbang.com> * simple.el (join-line): New alias for `delete-indentation'.
author youngs
date Mon, 12 Aug 2002 07:44:28 +0000
parents c017b187b1ec
children 87e011e66a78
files lisp/ChangeLog lisp/simple.el
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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  <jpw@shootybangbang.com>
+
+	* simple.el (join-line): New alias for `delete-indentation'.
+
 2002-08-03  Steve Youngs  <youngs@xemacs.org>
 
 	* lib-complete.el (find-library): Remove check for mule because
--- 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."