X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fobserver.c;h=d3c276ebca97fe73dcd9b18221c3b07ecc4ebdd4;hb=ff800d76d32087301f7aea21e6a030190f940809;hp=48514b80aaf0195c8ed29103f5921c5ebd6f89a1;hpb=3b64bf9877bc5cfacd10117a1a0656c464545995;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/observer.c b/gdb/observer.c index 48514b80aa..d3c276ebca 100644 --- a/gdb/observer.c +++ b/gdb/observer.c @@ -1,6 +1,6 @@ /* GDB Notifications to Observers. - Copyright 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2003, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -16,8 +16,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* An observer is an entity who is interested in being notified when GDB reaches certain states, or certain events occur in GDB. The entity being @@ -57,6 +57,12 @@ #include "gdbcmd.h" static int observer_debug; +static void +show_observer_debug (struct ui_file *file, int from_tty, + struct cmd_list_element *c, const char *value) +{ + fprintf_filtered (file, _("Observer debugging is %s.\n"), value); +} /* The internal generic observer. */ @@ -146,7 +152,7 @@ generic_observer_detach (struct observer_list **subject, /* We should never reach this point. However, this should not be a very serious error, so simply report a warning to the user. */ - warning ("Failed to detach observer"); + warning (_("Failed to detach observer")); } /* Send a notification to all the observers of SUBJECT. ARGS is passed to @@ -199,12 +205,13 @@ extern initialize_file_ftype _initialize_observer; /* -Wmissing-prototypes */ void _initialize_observer (void) { - add_setshow_zinteger_cmd ("observer", class_maintenance, &observer_debug, "\ -Set observer debugging.", "\ -Show observer debugging.", "\ -When non-zero, observer debugging is enabled.", "\ -Observer debugging is %s.", - NULL, NULL, + add_setshow_zinteger_cmd ("observer", class_maintenance, + &observer_debug, _("\ +Set observer debugging."), _("\ +Show observer debugging."), _("\ +When non-zero, observer debugging is enabled."), + NULL, + show_observer_debug, &setdebuglist, &showdebuglist); }