mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	Merged revisions 81049 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r81049 | andrew.kuchling | 2010-05-10 13:18:25 -0400 (Mon, 10 May 2010) | 1 line
  Move { out of #if...#else block; this confuses Emacs' C-mode
........
			
			
This commit is contained in:
		
							parent
							
								
									cdd01d2ddb
								
							
						
					
					
						commit
						abc79cd6bb
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		| 
						 | 
					@ -1234,10 +1234,11 @@ PyCursesWindow_NoOutRefresh(PyCursesWindowObject *self, PyObject *args)
 | 
				
			||||||
  int rtn;
 | 
					  int rtn;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef WINDOW_HAS_FLAGS
 | 
					#ifndef WINDOW_HAS_FLAGS
 | 
				
			||||||
  if (0) {
 | 
					  if (0)
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
  if (self->win->_flags & _ISPAD) {
 | 
					  if (self->win->_flags & _ISPAD)
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
    switch(PyTuple_Size(args)) {
 | 
					    switch(PyTuple_Size(args)) {
 | 
				
			||||||
    case 6:
 | 
					    case 6:
 | 
				
			||||||
      if (!PyArg_ParseTuple(args, 
 | 
					      if (!PyArg_ParseTuple(args, 
 | 
				
			||||||
| 
						 | 
					@ -1403,10 +1404,11 @@ PyCursesWindow_Refresh(PyCursesWindowObject *self, PyObject *args)
 | 
				
			||||||
  int rtn;
 | 
					  int rtn;
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
#ifndef WINDOW_HAS_FLAGS
 | 
					#ifndef WINDOW_HAS_FLAGS
 | 
				
			||||||
  if (0) {
 | 
					  if (0)
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
  if (self->win->_flags & _ISPAD) {
 | 
					  if (self->win->_flags & _ISPAD)
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
    switch(PyTuple_Size(args)) {
 | 
					    switch(PyTuple_Size(args)) {
 | 
				
			||||||
    case 6:
 | 
					    case 6:
 | 
				
			||||||
      if (!PyArg_ParseTuple(args, 
 | 
					      if (!PyArg_ParseTuple(args, 
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue