| 6 results (0.25 seconds) |
![]() Custom Search |
Sep 5, 2008 ... DosToUnix (Dos2Unix) is a quick interactive function for replacing all DOS carriage returns (^M) with Unix line feeds in a selected buffer. www.emacswiki.org/emacs/DosToUnix |
Mar 31, 2013 ... (defun dos2unix () (interactive) (beginning-of-buffer) (while (search-forward "\r") ( replace-match ""))). The parentheses () in the first line just ... www.emacswiki.org/emacs/EmacsCrashTips |
Sep 5, 2008... of lines (defun dos2unix () (interactive) (goto-char (point-min)) (while (search- forward "\r" nil t) (replace-match ""))) (defun upcase-all-selects ... www.emacswiki.org/emacs/TimAnderson |
Feb 3, 2013 ... Most likely, you are editing a DOS file and the DOS line-endings are being displayed by emacs. You should run the dos2unix command before ... www.emacswiki.org/emacs/CommunityEmacsFAQ |
Sep 14, 2011... beg (point))) (goto-char 0)) (defun guti-twiki-textarea-edit () "Edits a twiki textarea" (interactive) (guti-narrow-to-textarea) (dos2unix)). Function ... www.emacswiki.org/emacs/WikiRemote |
Jul 3, 2006... --cflags -IC:/free_ware/gnuwin32/src/lib --cflags -DXPM_NO_X emacs\nt> dos2unix makefile emacs\nt> make bootstrap. Copy all .dll files to ... www.emacswiki.org/emacs/BuildingCvsWThirtyTwoMingw |
| |