This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ob/commit] scm-valprint whitespace tweaks


2005-01-13  Michael Snyder  <msnyder@redhat.com>

	* scm-valprint.c: Whitespace tweaks.

Index: scm-valprint.c
===================================================================
RCS file: /cvs/src/src/gdb/scm-valprint.c,v
retrieving revision 1.5
diff -p -r1.5 scm-valprint.c
*** scm-valprint.c	12 Nov 2004 21:45:07 -0000	1.5
--- scm-valprint.c	14 Jan 2005 01:55:34 -0000
*************** taloop:
*** 290,297 ****
  	      {
  		result
  		  = scm_apply (hook,
! 			scm_listify (exp, port, (writing ? BOOL_T : BOOL_F),
! 				     SCM_UNDEFINED),
  			       EOL);
  		if (result == BOOL_F)
  		  goto punk;
--- 290,298 ----
  	      {
  		result
  		  = scm_apply (hook,
! 			       scm_listify (exp, port, 
! 					    (writing ? BOOL_T : BOOL_F),
! 					    SCM_UNDEFINED),
  			       EOL);
  		if (result == BOOL_F)
  		  goto punk;
*************** taloop:
*** 338,344 ****
  	  break;
  	case tc7_port:
  	  i = PTOBNUM (exp);
! 	  if (i < scm_numptob && scm_ptobs[i].print && (scm_ptobs[i].print) (exp, port, writing))
  	    break;
  	  goto punk;
  	case tc7_smob:
--- 339,347 ----
  	  break;
  	case tc7_port:
  	  i = PTOBNUM (exp);
! 	  if (i < scm_numptob 
! 	      && scm_ptobs[i].print 
! 	      && (scm_ptobs[i].print) (exp, port, writing))
  	    break;
  	  goto punk;
  	case tc7_smob:

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]