emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Errors after upgrading emacs to 24.3.1 and org to 7.9.4
@ 2013-03-20 21:28 Chris Henderson
  2013-03-21 16:38 ` Eric S Fraga
  2013-03-22  6:17 ` Chris Henderson
  0 siblings, 2 replies; 7+ messages in thread
From: Chris Henderson @ 2013-03-20 21:28 UTC (permalink / raw)
  To: emacs-orgmode

I have upgraded emacs from version 24 to 24.3.1 via homebrew on os x
mountain lion and every time I start emacs I get error:

error: Invalid face, modeline

I have also upgraded org to version 7.9.4 via emacs M-x package-list
option and now my custom keys don't work: when I press ^C-c it used to
give me option as to where I want to put something: either project,
someday/maybe, read and review or tasks. Now I get error: C-c c is
undefined

(setq org-capture-templates
       '(("t" "Tasks" entry (file+headline "~/org/gtd_home.org" "Tasks")
              "** %?\n  %i Added:%U")
         ("p" "Project" entry (file+headline "~/org/gtd_home.org" "Projects")
              "** %?\n  %i Added:%U")
         ("r" "Read and Review" entry (file+headline
"~/org/gtd_home.org" "Read and Review")
              "** %?\n  %i Added:%U")
         ("s" "Someday/ Maybe" entry (file+headline
"~/org/gtd_home.org" "Someday/ Maybe")
              "** %?\n  %i Added:%U")
         ("j" "Journal" entry (file+datetree "~/org/journal.org")
              "* %?\nEntered on %U\n  %i\n  %a")))

^C-t which used to give me todo, cancel etc. don't seem to work as well:

(setq org-todo-keywords
            '((sequence "TODO(t)" "|" "DONE(d)")
              (sequence "|" "CANCELED(c)")))

Please help.

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

* Re: Errors after upgrading emacs to 24.3.1 and org to 7.9.4
  2013-03-20 21:28 Errors after upgrading emacs to 24.3.1 and org to 7.9.4 Chris Henderson
@ 2013-03-21 16:38 ` Eric S Fraga
  2013-03-22  6:14   ` Chris Henderson
  2013-03-22  6:17 ` Chris Henderson
  1 sibling, 1 reply; 7+ messages in thread
From: Eric S Fraga @ 2013-03-21 16:38 UTC (permalink / raw)
  To: Chris Henderson; +Cc: emacs-orgmode

Chris Henderson <henders254@gmail.com> writes:

> I have upgraded emacs from version 24 to 24.3.1 via homebrew on os x
> mountain lion and every time I start emacs I get error:
>
> error: Invalid face, modeline

modeline changed to mode-line a while back although probably sometime
between 24 and 24.3.1 (I track emacs-snapshot).  It could be that you
have a custom face set that depends on modeline?
-- 
: Eric S Fraga, GnuPG: 0xC89193D8FFFCF67D
: in Emacs 24.3.50.1 and Org release_7.9.3f-1199-g3a0e55

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

* Re: Errors after upgrading emacs to 24.3.1 and org to 7.9.4
  2013-03-21 16:38 ` Eric S Fraga
@ 2013-03-22  6:14   ` Chris Henderson
  2014-06-16 15:43     ` Francisco Fernández
  0 siblings, 1 reply; 7+ messages in thread
From: Chris Henderson @ 2013-03-22  6:14 UTC (permalink / raw)
  To: Chris Henderson, emacs-orgmode

On Fri, Mar 22, 2013 at 3:38 AM, Eric S Fraga <e.fraga@ucl.ac.uk> wrote:
> Chris Henderson <henders254@gmail.com> writes:
>
>> I have upgraded emacs from version 24 to 24.3.1 via homebrew on os x
>> mountain lion and every time I start emacs I get error:
>>
>> error: Invalid face, modeline
>
> modeline changed to mode-line a while back although probably sometime
> between 24 and 24.3.1 (I track emacs-snapshot).  It could be that you
> have a custom face set that depends on modeline?

Thanks, I have changed "modeline" to "mode-line" and it's now working fine.

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

* Re: Errors after upgrading emacs to 24.3.1 and org to 7.9.4
  2013-03-20 21:28 Errors after upgrading emacs to 24.3.1 and org to 7.9.4 Chris Henderson
  2013-03-21 16:38 ` Eric S Fraga
@ 2013-03-22  6:17 ` Chris Henderson
  2013-03-22 11:29   ` Eric S Fraga
  1 sibling, 1 reply; 7+ messages in thread
From: Chris Henderson @ 2013-03-22  6:17 UTC (permalink / raw)
  To: emacs-orgmode

On Thu, Mar 21, 2013 at 8:28 AM, Chris Henderson <henders254@gmail.com> wrote:
> I have also upgraded org to version 7.9.4 via emacs M-x package-list
> option and now my custom keys don't work: when I press ^C-c it used to
> give me option as to where I want to put something: either project,
> someday/maybe, read and review or tasks. Now I get error: C-c c is
> undefined
>
> (setq org-capture-templates
>        '(("t" "Tasks" entry (file+headline "~/org/gtd_home.org" "Tasks")
>               "** %?\n  %i Added:%U")
>          ("p" "Project" entry (file+headline "~/org/gtd_home.org" "Projects")
>               "** %?\n  %i Added:%U")
>          ("r" "Read and Review" entry (file+headline
> "~/org/gtd_home.org" "Read and Review")
>               "** %?\n  %i Added:%U")
>          ("s" "Someday/ Maybe" entry (file+headline
> "~/org/gtd_home.org" "Someday/ Maybe")
>               "** %?\n  %i Added:%U")
>          ("j" "Journal" entry (file+datetree "~/org/journal.org")
>               "* %?\nEntered on %U\n  %i\n  %a")))
>
> ^C-t which used to give me todo, cancel etc. don't seem to work as well:
>
> (setq org-todo-keywords
>             '((sequence "TODO(t)" "|" "DONE(d)")
>               (sequence "|" "CANCELED(c)")))
>

I have downgraded org-mode to version 7.9.2 (org-20121217) and my
org-capture (^C-c) is now working fine. Is there any reason why it
doesn't work with the latest version?

Thanks.

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

* Re: Errors after upgrading emacs to 24.3.1 and org to 7.9.4
  2013-03-22  6:17 ` Chris Henderson
@ 2013-03-22 11:29   ` Eric S Fraga
  0 siblings, 0 replies; 7+ messages in thread
From: Eric S Fraga @ 2013-03-22 11:29 UTC (permalink / raw)
  To: Chris Henderson; +Cc: emacs-orgmode

Chris Henderson <henders254@gmail.com> writes:

> On Thu, Mar 21, 2013 at 8:28 AM, Chris Henderson <henders254@gmail.com> wrote:
>> I have also upgraded org to version 7.9.4 via emacs M-x package-list
>> option and now my custom keys don't work: when I press ^C-c it used to
>
>> give me option as to where I want to put something: either project,
>> someday/maybe, read and review or tasks. Now I get error: C-c c is
>> undefined

Have you actually bound org-capture to C-c c?  This is not bound by
default so you have to explicitly do something along the lines of

    (global-set-key "\C-cc" 'org-capture)

-- 
: Eric S Fraga, GnuPG: 0xC89193D8FFFCF67D
: in Emacs 24.3.50.1 and Org release_8.0-pre-150-g412d98

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

* Re: Errors after upgrading emacs to 24.3.1 and org to 7.9.4
  2013-03-22  6:14   ` Chris Henderson
@ 2014-06-16 15:43     ` Francisco Fernández
  2014-06-16 17:21       ` Eric S Fraga
  0 siblings, 1 reply; 7+ messages in thread
From: Francisco Fernández @ 2014-06-16 15:43 UTC (permalink / raw)
  To: emacs-orgmode

Chris Henderson <henders254 <at> gmail.com> writes:

> 
> On Fri, Mar 22, 2013 at 3:38 AM, Eric S Fraga <e.fraga <at> ucl.ac.uk> 
wrote:
> > Chris Henderson <henders254 <at> gmail.com> writes:
> >
> >> I have upgraded emacs from version 24 to 24.3.1 via homebrew on os x
> >> mountain lion and every time I start emacs I get error:
> >>
> >> error: Invalid face, modeline
> >
> > modeline changed to mode-line a while back although probably sometime
> > between 24 and 24.3.1 (I track emacs-snapshot).  It could be that you
> > have a custom face set that depends on modeline?
> 
> Thanks, I have changed "modeline" to "mode-line" and it's now working fine.
> 
> 


Hi,

I'm new on this. And I have the same problem

Where do you exactly change "modeline" to "mode-line"

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

* Re: Errors after upgrading emacs to 24.3.1 and org to 7.9.4
  2014-06-16 15:43     ` Francisco Fernández
@ 2014-06-16 17:21       ` Eric S Fraga
  0 siblings, 0 replies; 7+ messages in thread
From: Eric S Fraga @ 2014-06-16 17:21 UTC (permalink / raw)
  To: Francisco Fernández; +Cc: emacs-orgmode

On Monday, 16 Jun 2014 at 15:43, Francisco Fernández wrote:

[...]

> I'm new on this. And I have the same problem
>
> Where do you exactly change "modeline" to "mode-line"

Wherever you have a reference to "modeline" in your initialisation
files.  If you cannot find that reference, try starting emacs with
--debug-init which should tell you where it fails.

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.4.50.2, Org release_8.2.6-1155-g9c57eec

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

end of thread, other threads:[~2014-06-16 17:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-20 21:28 Errors after upgrading emacs to 24.3.1 and org to 7.9.4 Chris Henderson
2013-03-21 16:38 ` Eric S Fraga
2013-03-22  6:14   ` Chris Henderson
2014-06-16 15:43     ` Francisco Fernández
2014-06-16 17:21       ` Eric S Fraga
2013-03-22  6:17 ` Chris Henderson
2013-03-22 11:29   ` Eric S Fraga

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