1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-13 16:38:14 +00:00

(c-mode): Reverting last change.

This commit is contained in:
Stefan Monnier 2003-06-19 15:55:31 +00:00
parent c3f6b2b412
commit 87d9913f72
2 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,16 @@
2003-06-19 Stefan Monnier <monnier@cs.yale.edu>
* progmodes/cc-mode.el (c-mode): Reverting last change.
2003-06-18 Stefan Monnier <monnier@cs.yale.edu>
* progmodes/gud.el (gud-find-expr-function): Rename from gud-find-expr.
(gud-find-fortran-expr): Move to fortran.el.
* progmodes/fortran.el (fortran-gud-find-expr): Move from gud.el
where it was called gud-find-fortran-expr.
(fortran-mode): Set gud-find-expr-function.
2003-06-18 Nick Roberts <nick@nick.uklinux.net>
* gdb-ui.el (gud-display1): Keep the gdb command, "display", in
@ -7,7 +20,7 @@
(gdb-source-info, gdba): Display assembler if there is no symbol
table for main, or message if there is no main.
(gdb-assembler-custom): Move point to current line of assembler.
* progmodes/gud.el (gud-menu-map): Add dbx support for "run" and
"nexti".
(dbx): Define gud-nexti and gud-run.

View File

@ -1,6 +1,6 @@
;;; cc-mode.el --- major mode for editing C, C++, Objective-C, and Java code
;; Copyright (C) 1985,1987,1992-2001 Free Software Foundation, Inc.
;; Copyright (C) 1985,1987,1992-2001,2003 Free Software Foundation, Inc.
;; Authors: 2000- Martin Stjernholm
;; 1998-1999 Barry A. Warsaw and Martin Stjernholm
@ -464,7 +464,6 @@ Key bindings:
(use-local-map c-mode-map)
(c-common-init 'c-mode)
(cc-imenu-init cc-imenu-c-generic-expression)
(set (make-local-variable 'gud-find-expr) 'gud-find-c-expr)
(run-hooks 'c-mode-common-hook)
(run-hooks 'c-mode-hook)
(c-update-modeline))