emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Zhichao Hong <zhichao.hong@gmail.com>
To: Giovanni Ridolfi <giovanni.ridolfi@yahoo.it>
Cc: emacs-orgmode@gnu.org, Carsten Dominik <carsten.dominik@gmail.com>
Subject: Re: org-mobile-pull & ^M ( question)
Date: Fri, 6 Nov 2009 10:45:34 -0600	[thread overview]
Message-ID: <3fea10110911060845x53b0d337v5601d1b26b4c6e7d@mail.gmail.com> (raw)
In-Reply-To: <37453.40370.qm@web28312.mail.ukl.yahoo.com>

Yes, I know it is caused by the windows.  That is why I mentioned that
I am using windows :).  When I changed all of agenda org files to unix
encoding before pushing.  Now the changes sync'ed correctly.  As on
the win32, emacs 23 create the file by unicode-dos as default.  Is
there a way to support the windows encoding for org mobile by default?
 This will help a lot!  For now, I can manually change all the file
encoding to unix for the mobileorg to work.

-Zhichao


On Fri, Nov 6, 2009 at 10:09 AM, Giovanni Ridolfi
<giovanni.ridolfi@yahoo.it> wrote:
> --- Ven 6/11/09, Zhichao Hong <zhichao.hong@gmail.com> ha scritto:
>> Heading not found on Level 1: <Some heading>^M
>>
>> I am wondering if  the exta ^M is causing this
>> issue.  I am using it
>> on the windows which file encoding is unicode-dos.
>         ^^^^^^^^^
> Windows is the culprit for the insertion of
> the ^M  character
> :-(
>
> google is our friend:
> http://openacs.org/blog/one-entry?entry_id=297156
> ----------------------------------------
> To replace the annoying ^M characters you can search and replace. The following representation holds true:
>
> ^M = C-q C-m
>
> Resulating in this sequence:
>
> M-%
> Query replace: C-q C-m with: C-q C-j
> -------------
> You can write a function [2] that
> re-search-forward ^M
> replace-match ""
>
> and call this function in a pre-hook
> before importing.
>
> Carsten, is there such a pre-hook?
>
> cheers,
> Giovanni
>
> [2] google is again our friend ;-)
>
> http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/676113e90825d4e7
>
> I use the following function to remove the trailing ^M from such files:
>
> (defun xsteve-remove-control-M ()
>  "Remove ^M at end of line in the whole buffer."
>  (interactive)
>  (save-match-data
>    (save-excursion
>      (let ((remove-count 0))
>        (goto-char (point-min))
>        (while (re-search-forward " $" (point-max) t)
>          (setq remove-count (+ remove-count 1))
>          (replace-match "" nil nil))
>        (message (format "%d ^M removed from buffer." remove-count))))))
>
>
>
>

  reply	other threads:[~2009-11-06 16:45 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-06 15:49 org-mobile-pull question Zhichao Hong
2009-11-06 16:03 ` Carsten Dominik
2009-11-06 16:09 ` org-mobile-pull & ^M ( question) Giovanni Ridolfi
2009-11-06 16:45   ` Zhichao Hong [this message]
2009-11-06 17:47   ` Carsten Dominik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3fea10110911060845x53b0d337v5601d1b26b4c6e7d@mail.gmail.com \
    --to=zhichao.hong@gmail.com \
    --cc=carsten.dominik@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=giovanni.ridolfi@yahoo.it \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).