* unable to create/find a .cpp file (ed.2)
@ 2006-07-28 20:08 Gary Wessle
2006-08-01 15:18 ` Kevin Rodgers
[not found] ` <mailman.4735.1154445579.9609.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 13+ messages in thread
From: Gary Wessle @ 2006-07-28 20:08 UTC (permalink / raw)
Hi
after my first post, I here provide more info in-order to find a fix.
thank you for giving me your time to fix my problems.
################ from old post ################
ctl-xf which does find/create a file then I type test.cpp then I get this in
the echo area
****************************************************************
File is opened with an external viewer. See buffer *extview log* for status messages.
****************************************************************
in *extview log* I have
****************************************************************
Opening file ~/test.cpp with handler: more '%s'
/home/fred/test.cpp: No such file or directory
Process extview-process finished
****************************************************************
################ more info ################
C-h v extview-application-associations'
(("\\.py$")
("\\.pdf$" . "xpdf %s"))
C-h f mailcap-parse-mimetypes function does not have any ".cpp" entry:
$emacs -q --no-site-file (the problem goes away)
$emacs -q (the problem DOES NOT returns)
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: unable to create/find a .cpp file (ed.2)
2006-07-28 20:08 unable to create/find a .cpp file (ed.2) Gary Wessle
@ 2006-08-01 15:18 ` Kevin Rodgers
[not found] ` <mailman.4735.1154445579.9609.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 13+ messages in thread
From: Kevin Rodgers @ 2006-08-01 15:18 UTC (permalink / raw)
Gary Wessle wrote:
> Hi
>
> after my first post, I here provide more info in-order to find a fix.
> thank you for giving me your time to fix my problems.
>
>
> ################ from old post ################
> ctl-xf which does find/create a file then I type test.cpp then I get this in
> the echo area
> ****************************************************************
> File is opened with an external viewer. See buffer *extview log* for status messages.
> ****************************************************************
>
> in *extview log* I have
> ****************************************************************
> Opening file ~/test.cpp with handler: more '%s'
> /home/fred/test.cpp: No such file or directory
>
> Process extview-process finished
> ****************************************************************
>
> ################ more info ################
> C-h v extview-application-associations'
> (("\\.py$")
> ("\\.pdf$" . "xpdf %s"))
>
> C-h f mailcap-parse-mimetypes function does not have any ".cpp" entry:
Yes, but did you check each of the files listed in that function's
doc string? That is where the ".cpp" -> "more '%s'" association must
be coming from since it's not in extview-application-associations.
But I think you could override the mailcap/mimetypes association like
this:
(setq extview-application-associations
(cons '("\\.cpp\\'" . nil) extview-application-associations))
> $emacs -q --no-site-file (the problem goes away)
> $emacs -q (the problem DOES NOT returns)
That means the source of the problem is either ~/.emacs or default.el,
but we already know it's just because you're loading the extview library
from ~/.emacs.
--
Kevin
^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <mailman.4735.1154445579.9609.help-gnu-emacs@gnu.org>]
* Re: unable to create/find a .cpp file (ed.2)
[not found] ` <mailman.4735.1154445579.9609.help-gnu-emacs@gnu.org>
@ 2006-08-02 16:13 ` Gary Wessle
2006-08-02 16:29 ` Gary Wessle
` (2 more replies)
0 siblings, 3 replies; 13+ messages in thread
From: Gary Wessle @ 2006-08-02 16:13 UTC (permalink / raw)
Kevin Rodgers <ihs_4664@yahoo.com> writes:
> Gary Wessle wrote:
> > Hi
> > after my first post, I here provide more info in-order to find a fix.
> > thank you for giving me your time to fix my problems.
> > ################ from old post ################
> > ctl-xf which does find/create a file then I type test.cpp then I get this in
> > the echo area
> > ****************************************************************
> > File is opened with an external viewer. See buffer *extview log* for status messages.
> > ****************************************************************
> > in *extview log* I have
> > ****************************************************************
> > Opening file ~/test.cpp with handler: more '%s'
> > /home/fred/test.cpp: No such file or directory
> > Process extview-process finished
> > ****************************************************************
> > ################ more info ################
> > C-h v extview-application-associations'
> > (("\\.py$")
> > ("\\.pdf$" . "xpdf %s"))
> > C-h f mailcap-parse-mimetypes function does not have any ".cpp"
> > entry:
>
> Yes, but did you check each of the files listed in that function's
> doc string? That is where the ".cpp" -> "more '%s'" association must
> be coming from since it's not in extview-application-associations.
sorry, but I don't get it, "function's doc string"
C-h f mailcap-parse-mimetypes output did not give any file names
either.
>
> But I think you could override the mailcap/mimetypes association like
> this:
>
> (setq extview-application-associations
> (cons '("\\.cpp\\'" . nil) extview-application-associations))
>
yes, that fixed it, thank you.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: unable to create/find a .cpp file (ed.2)
2006-08-02 16:13 ` Gary Wessle
@ 2006-08-02 16:29 ` Gary Wessle
2006-08-02 17:48 ` Kevin Rodgers
[not found] ` <mailman.4765.1154541341.9609.help-gnu-emacs@gnu.org>
2006-08-02 17:46 ` Kevin Rodgers
[not found] ` <mailman.4764.1154540943.9609.help-gnu-emacs@gnu.org>
2 siblings, 2 replies; 13+ messages in thread
From: Gary Wessle @ 2006-08-02 16:29 UTC (permalink / raw)
Gary Wessle <phddas@yahoo.com> writes:
> Kevin Rodgers <ihs_4664@yahoo.com> writes:
>
> > Gary Wessle wrote:
> > > Hi
> > > after my first post, I here provide more info in-order to find a fix.
> > > thank you for giving me your time to fix my problems.
> > > ################ from old post ################
> > > ctl-xf which does find/create a file then I type test.cpp then I get this in
> > > the echo area
> > > ****************************************************************
> > > File is opened with an external viewer. See buffer *extview log* for status messages.
> > > ****************************************************************
> > > in *extview log* I have
> > > ****************************************************************
> > > Opening file ~/test.cpp with handler: more '%s'
> > > /home/fred/test.cpp: No such file or directory
> > > Process extview-process finished
> > > ****************************************************************
> > > ################ more info ################
> > > C-h v extview-application-associations'
> > > (("\\.py$")
> > > ("\\.pdf$" . "xpdf %s"))
> > > C-h f mailcap-parse-mimetypes function does not have any ".cpp"
> > > entry:
> >
> > Yes, but did you check each of the files listed in that function's
> > doc string? That is where the ".cpp" -> "more '%s'" association must
> > be coming from since it's not in extview-application-associations.
>
> sorry, but I don't get it, "function's doc string"
> C-h f mailcap-parse-mimetypes output did not give any file names
> either.
>
> >
> > But I think you could override the mailcap/mimetypes association like
> > this:
> >
> > (setq extview-application-associations
> > (cons '("\\.cpp\\'" . nil) extview-application-associations))
> >
>
> yes, that fixed it, thank you.
sorry, that fix just above will let me open an existing .cpp file but
will not let me create a new one. as well as it will fail find/create
.h files
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: unable to create/find a .cpp file (ed.2)
2006-08-02 16:29 ` Gary Wessle
@ 2006-08-02 17:48 ` Kevin Rodgers
[not found] ` <mailman.4765.1154541341.9609.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 13+ messages in thread
From: Kevin Rodgers @ 2006-08-02 17:48 UTC (permalink / raw)
Gary Wessle wrote:
> Gary Wessle <phddas@yahoo.com> writes:
>
>> Kevin Rodgers <ihs_4664@yahoo.com> writes:
>>> But I think you could override the mailcap/mimetypes association like
>>> this:
>>>
>>> (setq extview-application-associations
>>> (cons '("\\.cpp\\'" . nil) extview-application-associations))
>>>
>> yes, that fixed it, thank you.
>
> sorry, that fix just above will let me open an existing .cpp file but
> will not let me create a new one. as well as it will fail find/create
> .h files
Exactly what happens when you try to visit a new .cpp file?
--
Kevin
^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <mailman.4765.1154541341.9609.help-gnu-emacs@gnu.org>]
* Re: unable to create/find a .cpp file (ed.2)
[not found] ` <mailman.4765.1154541341.9609.help-gnu-emacs@gnu.org>
@ 2006-08-02 23:52 ` Gary Wessle
2006-08-03 13:31 ` Kevin Rodgers
0 siblings, 1 reply; 13+ messages in thread
From: Gary Wessle @ 2006-08-02 23:52 UTC (permalink / raw)
Kevin Rodgers <ihs_4664@yahoo.com> writes:
> Gary Wessle wrote:
> > Gary Wessle <phddas@yahoo.com> writes:
> >
> >> Kevin Rodgers <ihs_4664@yahoo.com> writes:
> >>> But I think you could override the mailcap/mimetypes association like
> >>> this:
> >>>
> >>> (setq extview-application-associations
> >>> (cons '("\\.cpp\\'" . nil) extview-application-associations))
> >>>
> >> yes, that fixed it, thank you.
> > sorry, that fix just above will let me open an existing .cpp file but
> > will not let me create a new one. as well as it will fail find/create
> > .h files
>
> Exactly what happens when you try to visit a new .cpp file?
>
> --
> Kevin
sorry, I meant to say, I can visit a new .cpp file fine now but
visiting a new file.h I get in the *extview log*
Opening file ~/myPrograms/backtest/man.h with handler: more '%s'
/home/fred/myPrograms/backtest/man.h: No such file or directory
Process extview-process finished
****************************************************************
I thought to add a bit extra to what you suggested by doing in my
.emacs the following
(setq extview-application-associations
(cons '("\\.cpp\\'" . nil) extview-application-associations),
(cons '("\\.h\\'" . nil) extview-application-associations))
and then restart emacs and trying to visit a new .h file but I still
get the same error i.e, adding the .h line above to my .emacs did
nothing.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: unable to create/find a .cpp file (ed.2)
2006-08-02 23:52 ` Gary Wessle
@ 2006-08-03 13:31 ` Kevin Rodgers
0 siblings, 0 replies; 13+ messages in thread
From: Kevin Rodgers @ 2006-08-03 13:31 UTC (permalink / raw)
Gary Wessle wrote:
> Kevin Rodgers <ihs_4664@yahoo.com> writes:
>
>> Gary Wessle wrote:
>>> Gary Wessle <phddas@yahoo.com> writes:
>>>
>>>> Kevin Rodgers <ihs_4664@yahoo.com> writes:
>>>>> But I think you could override the mailcap/mimetypes association like
>>>>> this:
>>>>>
>>>>> (setq extview-application-associations
>>>>> (cons '("\\.cpp\\'" . nil) extview-application-associations))
>>>>>
>>>> yes, that fixed it, thank you.
>>> sorry, that fix just above will let me open an existing .cpp file but
>>> will not let me create a new one. as well as it will fail find/create
>>> .h files
>> Exactly what happens when you try to visit a new .cpp file?
>>
>> --
>> Kevin
>
> sorry, I meant to say, I can visit a new .cpp file fine now but
> visiting a new file.h I get in the *extview log*
>
> Opening file ~/myPrograms/backtest/man.h with handler: more '%s'
> /home/fred/myPrograms/backtest/man.h: No such file or directory
>
> Process extview-process finished
>
> ****************************************************************
>
> I thought to add a bit extra to what you suggested by doing in my
> .emacs the following
>
> (setq extview-application-associations
> (cons '("\\.cpp\\'" . nil) extview-application-associations),
> (cons '("\\.h\\'" . nil) extview-application-associations))
>
> and then restart emacs and trying to visit a new .h file but I still
> get the same error i.e, adding the .h line above to my .emacs did
> nothing.
Your MIME configuration is broken, not Emacs. Check ALL the mime.types
files I listed for you. It seems there is a default entry that maps
every file extension to the more '%s' command; you could verify that
by visiting a file with a nonsensical extension, e.g. "abc.foobarbaz".
--
Kevin
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: unable to create/find a .cpp file (ed.2)
2006-08-02 16:13 ` Gary Wessle
2006-08-02 16:29 ` Gary Wessle
@ 2006-08-02 17:46 ` Kevin Rodgers
[not found] ` <mailman.4764.1154540943.9609.help-gnu-emacs@gnu.org>
2 siblings, 0 replies; 13+ messages in thread
From: Kevin Rodgers @ 2006-08-02 17:46 UTC (permalink / raw)
Gary Wessle wrote:
> Kevin Rodgers <ihs_4664@yahoo.com> writes:
>
>> Gary Wessle wrote:
...
>> Yes, but did you check each of the files listed in that function's
>> doc string? That is where the ".cpp" -> "more '%s'" association must
>> be coming from since it's not in extview-application-associations.
>
> sorry, but I don't get it, "function's doc string"
> C-h f mailcap-parse-mimetypes output did not give any file names
> either.
Sorry, I meant the files listed in its source code (including
$MIMETYPES, e.g.):
(cond
(path nil)
((getenv "MIMETYPES") (setq path (getenv "MIMETYPES")))
((memq system-type mailcap-poor-system-types)
(setq path '("~/mime.typ" "~/etc/mime.typ")))
(t (setq path
;; mime.types seems to be the normal name, definitely so
;; on current GNUish systems. The search order follows
;; that for mailcap.
'("~/.mime.types"
"/etc/mime.types"
"/usr/etc/mime.types"
"/usr/local/etc/mime.types"
"/usr/local/www/conf/mime.types"
"~/.mime-types"
"/etc/mime-types"
"/usr/etc/mime-types"
"/usr/local/etc/mime-types"
"/usr/local/www/conf/mime-types"))))
--
Kevin
^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <mailman.4764.1154540943.9609.help-gnu-emacs@gnu.org>]
* Re: unable to create/find a .cpp file (ed.2)
[not found] ` <mailman.4764.1154540943.9609.help-gnu-emacs@gnu.org>
@ 2006-08-03 17:48 ` Gary Wessle
2006-08-04 2:19 ` Kevin Rodgers
[not found] ` <mailman.4831.1154658014.9609.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 13+ messages in thread
From: Gary Wessle @ 2006-08-03 17:48 UTC (permalink / raw)
Kevin Rodgers <ihs_4664@yahoo.com> writes:
> Gary Wessle wrote:
> > Kevin Rodgers <ihs_4664@yahoo.com> writes:
> >
> >> Gary Wessle wrote:
> ...
> >> Yes, but did you check each of the files listed in that function's
> >> doc string? That is where the ".cpp" -> "more '%s'" association must
> >> be coming from since it's not in extview-application-associations.
> > sorry, but I don't get it, "function's doc string"
> > C-h f mailcap-parse-mimetypes output did not give any file names
> > either.
>
> Sorry, I meant the files listed in its source code (including
> $MIMETYPES, e.g.):
>
> (cond
> (path nil)
> ((getenv "MIMETYPES") (setq path (getenv "MIMETYPES")))
> ((memq system-type mailcap-poor-system-types)
> (setq path '("~/mime.typ" "~/etc/mime.typ")))
> (t (setq path
> ;; mime.types seems to be the normal name, definitely so
> ;; on current GNUish systems. The search order follows
> ;; that for mailcap.
> '("~/.mime.types"
> "/etc/mime.types"
> "/usr/etc/mime.types"
> "/usr/local/etc/mime.types"
> "/usr/local/www/conf/mime.types"
> "~/.mime-types"
> "/etc/mime-types"
> "/usr/etc/mime-types"
> "/usr/local/etc/mime-types"
> "/usr/local/www/conf/mime-types"))))
>
> --
> Kevin
what command do I use to get the list of the above files on my system?
looking for any "cpp" in the above files, I found
in **************** "/etc/mime.types"
text/x-c++src c++ cpp cxx cc
I don't have most of the files you listed above.
I also don't have any $MIMETYPES in my $env output.
$ locate mime*.src
noting
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: unable to create/find a .cpp file (ed.2)
2006-08-03 17:48 ` Gary Wessle
@ 2006-08-04 2:19 ` Kevin Rodgers
[not found] ` <mailman.4831.1154658014.9609.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 13+ messages in thread
From: Kevin Rodgers @ 2006-08-04 2:19 UTC (permalink / raw)
Gary Wessle wrote:
> Kevin Rodgers <ihs_4664@yahoo.com> writes:
>> Gary Wessle wrote:
>>> C-h f mailcap-parse-mimetypes output did not give any file names
>>> either.
>> Sorry, I meant the files listed in its source code (including
>> $MIMETYPES, e.g.):
>>
>> (cond
>> (path nil)
>> ((getenv "MIMETYPES") (setq path (getenv "MIMETYPES")))
>> ((memq system-type mailcap-poor-system-types)
>> (setq path '("~/mime.typ" "~/etc/mime.typ")))
>> (t (setq path
>> ;; mime.types seems to be the normal name, definitely so
>> ;; on current GNUish systems. The search order follows
>> ;; that for mailcap.
>> '("~/.mime.types"
>> "/etc/mime.types"
>> "/usr/etc/mime.types"
>> "/usr/local/etc/mime.types"
>> "/usr/local/www/conf/mime.types"
>> "~/.mime-types"
>> "/etc/mime-types"
>> "/usr/etc/mime-types"
>> "/usr/local/etc/mime-types"
>> "/usr/local/www/conf/mime-types"))))
>
> what command do I use to get the list of the above files on my system?
Sorry, there is no command. I browsed extview.el, whose find-file
advice led me to mailcap.el, whose mailcap-parse-mimetypes function
contains that code.
> looking for any "cpp" in the above files, I found
>
> in **************** "/etc/mime.types"
> text/x-c++src c++ cpp cxx cc
I guess somewhere else "text/x-c++src" is mapped to "more '%s'". Can
you see anything suspicious in the output from `C-h v mailcap-mime-data'
? My guess is there's a default entry for the "text" major type.
> I don't have most of the files you listed above.
> I also don't have any $MIMETYPES in my $env output.
>
>
> $ locate mime*.src
> noting
That's normal.
--
Kevin
^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <mailman.4831.1154658014.9609.help-gnu-emacs@gnu.org>]
* Re: unable to create/find a .cpp file (ed.2)
[not found] ` <mailman.4831.1154658014.9609.help-gnu-emacs@gnu.org>
@ 2006-08-04 6:35 ` Gary Wessle
2006-08-04 13:55 ` Kevin Rodgers
[not found] ` <mailman.4850.1154699821.9609.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 13+ messages in thread
From: Gary Wessle @ 2006-08-04 6:35 UTC (permalink / raw)
Kevin Rodgers <ihs_4664@yahoo.com> writes:
> Gary Wessle wrote:
> > Kevin Rodgers <ihs_4664@yahoo.com> writes:
> >> Gary Wessle wrote:
> >>> C-h f mailcap-parse-mimetypes output did not give any file names
> >>> either.
> >> Sorry, I meant the files listed in its source code (including
> >> $MIMETYPES, e.g.):
> >>
> >> (cond
> >> (path nil)
> >> ((getenv "MIMETYPES") (setq path (getenv "MIMETYPES")))
> >> ((memq system-type mailcap-poor-system-types)
> >> (setq path '("~/mime.typ" "~/etc/mime.typ")))
> >> (t (setq path
> >> ;; mime.types seems to be the normal name, definitely so
> >> ;; on current GNUish systems. The search order follows
> >> ;; that for mailcap.
> >> '("~/.mime.types"
> >> "/etc/mime.types"
> >> "/usr/etc/mime.types"
> >> "/usr/local/etc/mime.types"
> >> "/usr/local/www/conf/mime.types"
> >> "~/.mime-types"
> >> "/etc/mime-types"
> >> "/usr/etc/mime-types"
> >> "/usr/local/etc/mime-types"
> >> "/usr/local/www/conf/mime-types"))))
> > what command do I use to get the list of the above files on my
> > system?
>
> Sorry, there is no command. I browsed extview.el, whose find-file
> advice led me to mailcap.el, whose mailcap-parse-mimetypes function
> contains that code.
>
> > looking for any "cpp" in the above files, I found
> > in **************** "/etc/mime.types"
> > text/x-c++src c++ cpp cxx cc
>
> I guess somewhere else "text/x-c++src" is mapped to "more '%s'". Can
> you see anything suspicious in the output from `C-h v
> mailcap-mime-data' ?
("plain"
(viewer . "more '%s'")
(type . "text/plain")
("needsterminal" . t))
("html"
(viewer . "/usr/bin/sensible-browser '%s'")
(type . "text/html")
("nametemplate" . "%s.html")
("description" . "HTML Text"))
(".*"
(viewer . "more '%s'")
(type . "text/*")
("needsterminal" . t))
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: unable to create/find a .cpp file (ed.2)
2006-08-04 6:35 ` Gary Wessle
@ 2006-08-04 13:55 ` Kevin Rodgers
[not found] ` <mailman.4850.1154699821.9609.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 13+ messages in thread
From: Kevin Rodgers @ 2006-08-04 13:55 UTC (permalink / raw)
Gary Wessle wrote:
> Kevin Rodgers <ihs_4664@yahoo.com> writes:
>> Gary Wessle wrote:
>>> looking for any "cpp" in the above files, I found
>>> in **************** "/etc/mime.types"
>>>
>>> text/x-c++src c++ cpp cxx cc
>>
>> I guess somewhere else "text/x-c++src" is mapped to "more '%s'". Can
>> you see anything suspicious in the output from `C-h v
>> mailcap-mime-data'?
>
> ("plain"
> (viewer . "more '%s'")
> (type . "text/plain")
> ("needsterminal" . t))
> ("html"
> (viewer . "/usr/bin/sensible-browser '%s'")
> (type . "text/html")
> ("nametemplate" . "%s.html")
> ("description" . "HTML Text"))
> (".*"
> (viewer . "more '%s'")
> (type . "text/*")
> ("needsterminal" . t))
Find out where that last entry is added (~/.emacs, default.el,
site-start.el) and delete it.
--
Kevin
^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <mailman.4850.1154699821.9609.help-gnu-emacs@gnu.org>]
* Re: unable to create/find a .cpp file (ed.2)
[not found] ` <mailman.4850.1154699821.9609.help-gnu-emacs@gnu.org>
@ 2006-08-05 0:22 ` Gary Wessle
0 siblings, 0 replies; 13+ messages in thread
From: Gary Wessle @ 2006-08-05 0:22 UTC (permalink / raw)
Kevin Rodgers <ihs_4664@yahoo.com> writes:
> Gary Wessle wrote:
> > Kevin Rodgers <ihs_4664@yahoo.com> writes:
> >> Gary Wessle wrote:
> >>> looking for any "cpp" in the above files, I found
> >>> in **************** "/etc/mime.types"
> >>> text/x-c++src c++ cpp cxx cc
> >>
> >> I guess somewhere else "text/x-c++src" is mapped to "more '%s'". Can
> >> you see anything suspicious in the output from `C-h v
> >> mailcap-mime-data'?
> > ("plain"
> > (viewer . "more '%s'")
> > (type . "text/plain")
> > ("needsterminal" . t))
> > ("html"
> > (viewer . "/usr/bin/sensible-browser '%s'")
> > (type . "text/html")
> > ("nametemplate" . "%s.html")
> > ("description" . "HTML Text"))
> > (".*"
> > (viewer . "more '%s'")
> > (type . "text/*")
> > ("needsterminal" . t))
>
> Find out where that last entry is added (~/.emacs, default.el,
> site-start.el) and delete it.
>
are you referring to this
(viewer . "more '%s'")
(type . "text/*")
("needsterminal" . t))
by just looking at the files "default.el" does not exist here, I could
not locate anything obvious, what is the exact "string" shall I be
searching for?
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2006-08-05 0:22 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-28 20:08 unable to create/find a .cpp file (ed.2) Gary Wessle
2006-08-01 15:18 ` Kevin Rodgers
[not found] ` <mailman.4735.1154445579.9609.help-gnu-emacs@gnu.org>
2006-08-02 16:13 ` Gary Wessle
2006-08-02 16:29 ` Gary Wessle
2006-08-02 17:48 ` Kevin Rodgers
[not found] ` <mailman.4765.1154541341.9609.help-gnu-emacs@gnu.org>
2006-08-02 23:52 ` Gary Wessle
2006-08-03 13:31 ` Kevin Rodgers
2006-08-02 17:46 ` Kevin Rodgers
[not found] ` <mailman.4764.1154540943.9609.help-gnu-emacs@gnu.org>
2006-08-03 17:48 ` Gary Wessle
2006-08-04 2:19 ` Kevin Rodgers
[not found] ` <mailman.4831.1154658014.9609.help-gnu-emacs@gnu.org>
2006-08-04 6:35 ` Gary Wessle
2006-08-04 13:55 ` Kevin Rodgers
[not found] ` <mailman.4850.1154699821.9609.help-gnu-emacs@gnu.org>
2006-08-05 0:22 ` Gary Wessle
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).