emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Fix org-indent-mode message when mode is refused
@ 2010-08-07 22:49 Bernt Hansen
  2010-08-09 15:16 ` Install warning for org-7 for forgetful users Robert Horn
  2010-08-09 19:53 ` [Accepted] Fix org-indent-mode message when mode is refused Carsten Dominik
  0 siblings, 2 replies; 5+ messages in thread
From: Bernt Hansen @ 2010-08-07 22:49 UTC (permalink / raw)
  To: emacs-orgmode; +Cc: Bernt Hansen

* lisp/org-indent.el (org-indent-mode): Fix grammar for message when mode is refused
---
This patch is available at git://git.norang.ca/org-mode.git fix-org-indent-msg

-Bernt

 lisp/org-indent.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/org-indent.el b/lisp/org-indent.el
index 83eaac5..e3edd25 100644
--- a/lisp/org-indent.el
+++ b/lisp/org-indent.el
@@ -135,11 +135,11 @@ FIXME:  How to update when broken?"
    ((org-bound-and-true-p org-inhibit-startup)
     (setq org-indent-mode nil))
    ((and org-indent-mode (featurep 'xemacs))
-    (message "org-indent-mode does not work in XEmacs - refused to turn it on")
+    (message "org-indent-mode does not work in XEmacs - refusing to turn it on")
     (setq org-indent-mode nil))
    ((and org-indent-mode
 	 (not (org-version-check "23.1.50" "Org Indent mode" :predicate)))
-    (message "org-indent-mode is can crash Emacs 23.1 - refused to turn it on!")
+    (message "org-indent-mode can crash Emacs 23.1 - refusing to turn it on!")
     (ding)
     (sit-for 1)
     (setq org-indent-mode nil))
-- 
1.7.2.1.44.g721e7

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Install warning for org-7 for forgetful users
  2010-08-07 22:49 [PATCH] Fix org-indent-mode message when mode is refused Bernt Hansen
@ 2010-08-09 15:16 ` Robert Horn
  2010-08-09 17:58   ` Marcelo de Moraes Serpa
  2010-08-09 19:53 ` [Accepted] Fix org-indent-mode message when mode is refused Carsten Dominik
  1 sibling, 1 reply; 5+ messages in thread
From: Robert Horn @ 2010-08-09 15:16 UTC (permalink / raw)
  To: emacs-orgmode

I ran into this, so I'll warn others.  It might belong in the notes for
org-7.01.

If you have a newer version of emacs that has org already integrated,
you get some, but not all, of the org-7.01 features functioning if you
have org-7.01 set as the auto-load directory.  I had been using org by
having the lines:

(setq load-path (cons "~/org-6.xxx/lisp" load-path))
(require 'org-install)

in my .emacs.  I forgot that I had upgraded emacs and org was now
integrated into emacs. I just changed org-6.xxx to org-7.01g to try out
the new version.  Odd things resulted.  It actually worked well enough
to do some work, but then I found occasional stuff that did not work.  I
used the brute force fix of just moving all the org-* files into a
temporary directory, thus slowing down the startup but ensuring that I
could test the new version without having headaches if I wanted to revert.

There might be a better method than this.  It's probably worth
mentioning in the release notes.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Install warning for org-7 for forgetful users
  2010-08-09 15:16 ` Install warning for org-7 for forgetful users Robert Horn
@ 2010-08-09 17:58   ` Marcelo de Moraes Serpa
  2010-08-09 19:51     ` Carsten Dominik
  0 siblings, 1 reply; 5+ messages in thread
From: Marcelo de Moraes Serpa @ 2010-08-09 17:58 UTC (permalink / raw)
  To: Robert Horn; +Cc: emacs-orgmode

Yeah, this is a big issue and I haven't seen it being mentioned on the
org manual. Emacs has org integrated, which is good for casual users,
and for org of course, but creates some headaches if you want to stay
on the bleeding edge of development. I also did what you have done, in
my case, on OSX, cd'ed into Emacs.app and removed org manually, then
it started loading my version of org. The details should be in a
previous post of mine in this list.

Marcelo.

On Mon, Aug 9, 2010 at 10:16 AM, Robert Horn <rjhorn@panix.com> wrote:
> I ran into this, so I'll warn others.  It might belong in the notes for
> org-7.01.
>
> If you have a newer version of emacs that has org already integrated,
> you get some, but not all, of the org-7.01 features functioning if you
> have org-7.01 set as the auto-load directory.  I had been using org by
> having the lines:
>
> (setq load-path (cons "~/org-6.xxx/lisp" load-path))
> (require 'org-install)
>
> in my .emacs.  I forgot that I had upgraded emacs and org was now
> integrated into emacs. I just changed org-6.xxx to org-7.01g to try out
> the new version.  Odd things resulted.  It actually worked well enough
> to do some work, but then I found occasional stuff that did not work.  I
> used the brute force fix of just moving all the org-* files into a
> temporary directory, thus slowing down the startup but ensuring that I
> could test the new version without having headaches if I wanted to revert.
>
> There might be a better method than this.  It's probably worth
> mentioning in the release notes.
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Install warning for org-7 for forgetful users
  2010-08-09 17:58   ` Marcelo de Moraes Serpa
@ 2010-08-09 19:51     ` Carsten Dominik
  0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2010-08-09 19:51 UTC (permalink / raw)
  To: Marcelo de Moraes Serpa; +Cc: Robert Horn, emacs-orgmode

Hi,

the installation instructions for Org tell you that you need
make the autoload file org-install.el by typing make.
If you do not do this, autoloading will be broken.  If you do,
I do not see what would go wrong.

- Carsten

On Aug 9, 2010, at 7:58 PM, Marcelo de Moraes Serpa wrote:

> Yeah, this is a big issue and I haven't seen it being mentioned on the
> org manual. Emacs has org integrated, which is good for casual users,
> and for org of course, but creates some headaches if you want to stay
> on the bleeding edge of development. I also did what you have done, in
> my case, on OSX, cd'ed into Emacs.app and removed org manually, then
> it started loading my version of org. The details should be in a
> previous post of mine in this list.
>
> Marcelo.
>
> On Mon, Aug 9, 2010 at 10:16 AM, Robert Horn <rjhorn@panix.com> wrote:
>> I ran into this, so I'll warn others.  It might belong in the notes  
>> for
>> org-7.01.
>>
>> If you have a newer version of emacs that has org already integrated,
>> you get some, but not all, of the org-7.01 features functioning if  
>> you
>> have org-7.01 set as the auto-load directory.  I had been using org  
>> by
>> having the lines:
>>
>> (setq load-path (cons "~/org-6.xxx/lisp" load-path))
>> (require 'org-install)
>>
>> in my .emacs.  I forgot that I had upgraded emacs and org was now
>> integrated into emacs. I just changed org-6.xxx to org-7.01g to try  
>> out
>> the new version.  Odd things resulted.  It actually worked well  
>> enough
>> to do some work, but then I found occasional stuff that did not  
>> work.  I
>> used the brute force fix of just moving all the org-* files into a
>> temporary directory, thus slowing down the startup but ensuring  
>> that I
>> could test the new version without having headaches if I wanted to  
>> revert.
>>
>> There might be a better method than this.  It's probably worth
>> mentioning in the release notes.
>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Accepted] Fix org-indent-mode message when mode is refused
  2010-08-07 22:49 [PATCH] Fix org-indent-mode message when mode is refused Bernt Hansen
  2010-08-09 15:16 ` Install warning for org-7 for forgetful users Robert Horn
@ 2010-08-09 19:53 ` Carsten Dominik
  1 sibling, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2010-08-09 19:53 UTC (permalink / raw)
  To: emacs-orgmode

Patch 202 (http://patchwork.newartisans.com/patch/202/) is now "Accepted".

Maintaner comment: No comment

This relates to the following submission:

http://mid.gmane.org/%3C1281221383-20101-1-git-send-email-bernt%40norang.ca%3E

Here is the original message containing the patch:

> Content-Type: text/plain; charset="utf-8"
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> Subject: [Orgmode] Fix org-indent-mode message when mode is refused
> Date: Sun, 08 Aug 2010 03:49:43 -0000
> From: Bernt Hansen <bernt@norang.ca>
> X-Patchwork-Id: 202
> Message-Id: <1281221383-20101-1-git-send-email-bernt@norang.ca>
> To: emacs-orgmode@gnu.org
> Cc: Bernt Hansen <bernt@norang.ca>
> 
> * lisp/org-indent.el (org-indent-mode): Fix grammar for message when mode is refused
> 
> ---
> This patch is available at git://git.norang.ca/org-mode.git fix-org-indent-msg
> 
> -Bernt
> 
>  lisp/org-indent.el |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/lisp/org-indent.el b/lisp/org-indent.el
> index 83eaac5..e3edd25 100644
> --- a/lisp/org-indent.el
> +++ b/lisp/org-indent.el
> @@ -135,11 +135,11 @@ FIXME:  How to update when broken?"
>     ((org-bound-and-true-p org-inhibit-startup)
>      (setq org-indent-mode nil))
>     ((and org-indent-mode (featurep 'xemacs))
> -    (message "org-indent-mode does not work in XEmacs - refused to turn it on")
> +    (message "org-indent-mode does not work in XEmacs - refusing to turn it on")
>      (setq org-indent-mode nil))
>     ((and org-indent-mode
>  	 (not (org-version-check "23.1.50" "Org Indent mode" :predicate)))
> -    (message "org-indent-mode is can crash Emacs 23.1 - refused to turn it on!")
> +    (message "org-indent-mode can crash Emacs 23.1 - refusing to turn it on!")
>      (ding)
>      (sit-for 1)
>      (setq org-indent-mode nil))
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-08-12  9:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-07 22:49 [PATCH] Fix org-indent-mode message when mode is refused Bernt Hansen
2010-08-09 15:16 ` Install warning for org-7 for forgetful users Robert Horn
2010-08-09 17:58   ` Marcelo de Moraes Serpa
2010-08-09 19:51     ` Carsten Dominik
2010-08-09 19:53 ` [Accepted] Fix org-indent-mode message when mode is refused Carsten Dominik

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).