Re: A bit off topic, Xemacs?
Re: A bit off topic, Xemacs?
- Subject: Re: A bit off topic, Xemacs?
- From: "Dmytro Koval'ov" <email@hidden>
- Date: Thu, 13 Feb 2003 13:17:30 +0900
>>>>> On Wed, 12 Feb 2003, "Michael" == Michael W. Fleming wrote:
Michael> I've got it installed (21.5.4-2) and it launches just fine
Michael> and works well with standard files. But I've got a newbie
Michael> question that I can't seem to get google or the xemacs docs
Michael> to help me figure out. Whenever I edit an html file, the
Michael> carriage-return characters show up as ^M. Ugly.
You are probably editing DOS-file (with CRLF instead of CR as in UNIX).
Try to find such thisnas 'dos-mode' for emacs.
Michael> Suggestions?
Alternatively I have this in my ~/.emacs:
;http://www.linuxgazette.com/issue10/lg_tips10.html#emacs
;Date: Thu, 05 Sep 1996 13:34:09 -0700
;From: Earl Stutes <email@hidden>
;Subject: $.02 emacs tip
(defun dos-unix ()
(interactive)
(goto-char (point-min))
(while (search-forward "\r" nil t) (replace-match "")))
(defun unix-dos ()
(interactive)
(goto-char (point-min))
(while (search-forward "\n" nil t) (replace-match "\r\n")))
Any time I need to convert file between dos - unix I call either
'M-x dos-unix' or 'M-x unix-dos'
Cheers,
Dmytro.
--
Dmytro Koval'ov
http://www.asahi-net.or.jp/~as9d-kvlv
http://yarylo.sytes.net
GPG keyID 215DDFF7
gpg --keyserver pgp.mit.edu --recv-keys 215DDFF7
_______________________________________________
x11-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/x11-users
X11 for Mac OS X FAQ: http://developer.apple.com/qa/qa2001/qa1232.html
Report issues, request features, feedback: http://developer.apple.com/bugreporter
Do not post admin requests to the list. They will be ignored.