unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* GNU Emacs (Head CVS): Build fail
@ 2003-09-12  7:39 Dhruva Krishnamurthy
  2003-09-12 12:03 ` Eric Hanchrow
  2003-09-12 21:06 ` Richard Stallman
  0 siblings, 2 replies; 4+ messages in thread
From: Dhruva Krishnamurthy @ 2003-09-12  7:39 UTC (permalink / raw)


Hello,
 GNU Emacs 21.3.50 (Latest CVS) build fails on W2K using MinGW32 gcc
 compiler.

cmd>gmake bootstrap
....
....
Saving file e:/emacs/emacs/lisp/loaddefs.el...
Loading vc-cvs (source)...
Key sequence M - g uses invalid prefix characters
[1] + Done(134) ?
  956   Abort   ./../bin/emacs.exe
gmake[1]: *** [autoloads] Error 134
gmake[1]: Leaving directory `E:/emacs/emacs/lisp'
gmake: *** [bootstrap-gmake] Error 2

with regards,
dhruva
________________________________________
Dhruva Krishnamurthy
http://schemer.fateback.com/
General:www@furby.fastmail.fm
GNU/FSF:gnu@furby.fastmail.fm 
GNU Emacs:gnu.emacs@furby.fastmail.fm

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

* Re: GNU Emacs (Head CVS): Build fail
  2003-09-12  7:39 GNU Emacs (Head CVS): Build fail Dhruva Krishnamurthy
@ 2003-09-12 12:03 ` Eric Hanchrow
  2003-09-12 14:32   ` Luc Teirlinck
  2003-09-12 21:06 ` Richard Stallman
  1 sibling, 1 reply; 4+ messages in thread
From: Eric Hanchrow @ 2003-09-12 12:03 UTC (permalink / raw)
  Cc: Dhruva Krishnamurthy


    Hello,
     GNU Emacs 21.3.50 (Latest CVS) build fails on W2K using MinGW32 gcc
     compiler.

    cmd>gmake bootstrap
    ....
    ....
    Saving file e:/emacs/emacs/lisp/loaddefs.el...
    Loading vc-cvs (source)...
    Key sequence M - g uses invalid prefix characters
    [1] + Done(134) ?
      956   Abort   ./../bin/emacs.exe
    gmake[1]: *** [autoloads] Error 134
    gmake[1]: Leaving directory `E:/emacs/emacs/lisp'
    gmake: *** [bootstrap-gmake] Error 2

Try this patch:

    cd /usr/local/src/emacs-cvs/lisp/
    diff -wu /usr/local/src/emacs-cvs/lisp/dired.el.\~1.267.\~ /usr/local/src/emacs-cvs/lisp/dired.el
    --- /usr/local/src/emacs-cvs/lisp/dired.el.~1.267.~	2003-09-12 04:34:57.000000000 -0700
    +++ /usr/local/src/emacs-cvs/lisp/dired.el	2003-09-12 05:01:07.000000000 -0700
    @@ -948,7 +948,7 @@
         (define-key map "f" 'dired-find-file)
         (define-key map "\C-m" 'dired-advertised-find-file)
         (define-key map "g" 'revert-buffer)
    -    (define-key map "M-g" 'dired-goto-file)
    +    (define-key map "\M-g" 'dired-goto-file)
         (define-key map "h" 'describe-mode)
         (define-key map "i" 'dired-maybe-insert-subdir)
         (define-key map "k" 'dired-do-kill-lines)

    Diff finished at Fri Sep 12 05:02:26

-- 
A hacker would consider being asked to write
        add x to y giving z
instead of
        z = x+y
as something between an insult to his intelligence and a sin against God.
        -- Paul Graham (http://paulgraham.com/popular.html)

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

* Re: GNU Emacs (Head CVS): Build fail
  2003-09-12 12:03 ` Eric Hanchrow
@ 2003-09-12 14:32   ` Luc Teirlinck
  0 siblings, 0 replies; 4+ messages in thread
From: Luc Teirlinck @ 2003-09-12 14:32 UTC (permalink / raw)
  Cc: gnu, emacs-devel

Eric Hanchrow wrote:

   Try this patch:

I committed it.  Bootstrapping works fine now.  Thanks.

Sincerely,

Luc.

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

* Re: GNU Emacs (Head CVS): Build fail
  2003-09-12  7:39 GNU Emacs (Head CVS): Build fail Dhruva Krishnamurthy
  2003-09-12 12:03 ` Eric Hanchrow
@ 2003-09-12 21:06 ` Richard Stallman
  1 sibling, 0 replies; 4+ messages in thread
From: Richard Stallman @ 2003-09-12 21:06 UTC (permalink / raw)
  Cc: emacs-devel

This fix is needed.  I will install it soon unless someone else
doesit first.

*** dired.el.~1.267.~	Thu Sep 11 09:45:41 2003
--- dired.el	Fri Sep 12 16:18:50 2003
***************
*** 948,954 ****
      (define-key map "f" 'dired-find-file)
      (define-key map "\C-m" 'dired-advertised-find-file)
      (define-key map "g" 'revert-buffer)
!     (define-key map "M-g" 'dired-goto-file)
      (define-key map "h" 'describe-mode)
      (define-key map "i" 'dired-maybe-insert-subdir)
      (define-key map "k" 'dired-do-kill-lines)
--- 948,954 ----
      (define-key map "f" 'dired-find-file)
      (define-key map "\C-m" 'dired-advertised-find-file)
      (define-key map "g" 'revert-buffer)
!     (define-key map "\M-g" 'dired-goto-file)
      (define-key map "h" 'describe-mode)
      (define-key map "i" 'dired-maybe-insert-subdir)
      (define-key map "k" 'dired-do-kill-lines)

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

end of thread, other threads:[~2003-09-12 21:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-12  7:39 GNU Emacs (Head CVS): Build fail Dhruva Krishnamurthy
2003-09-12 12:03 ` Eric Hanchrow
2003-09-12 14:32   ` Luc Teirlinck
2003-09-12 21:06 ` Richard Stallman

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.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).