~ubuntu-branches/debian/sid/ncurses/sid-200908151540

« back to all changes in this revision

Viewing changes to ncurses/base/lib_nl.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-11-30 03:43:00 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20081130034300-lw6qrujyjmv6e32x
Tags: 5.7+20081122-2
Adding patch from Samuel Thibault to ensure that aalib checks the
value returned by Gpm_GetEvent() and only proceeds if value == 1
(Closes: #506717).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/****************************************************************************
2
 
 * Copyright (c) 1998-2008,2009 Free Software Foundation, Inc.              *
 
2
 * Copyright (c) 1998,1999,2000 Free Software Foundation, Inc.              *
3
3
 *                                                                          *
4
4
 * Permission is hereby granted, free of charge, to any person obtaining a  *
5
5
 * copy of this software and associated documentation files (the            *
29
29
/****************************************************************************
30
30
 *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31
31
 *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32
 
 *     and: Thomas E. Dickey                        1996-on                 *
33
 
 *     and: Juergen Pfeifer                         2009                    *
34
32
 ****************************************************************************/
35
33
 
36
34
/*
44
42
 
45
43
#include <curses.priv.h>
46
44
 
47
 
MODULE_ID("$Id: lib_nl.c,v 1.10 2009/02/21 20:58:21 tom Exp $")
 
45
MODULE_ID("$Id: lib_nl.c,v 1.8 2000/12/10 02:43:27 tom Exp $")
48
46
 
49
47
#ifdef __EMX__
50
48
#include <io.h>
51
49
#endif
52
50
 
53
51
NCURSES_EXPORT(int)
54
 
NCURSES_SP_NAME(nl) (NCURSES_SP_DCL0)
 
52
nl(void)
55
53
{
56
 
    T((T_CALLED("nl(%p)"), SP_PARM));
57
 
    if (0 == SP_PARM)
58
 
        returnCode(ERR);
59
 
    SP_PARM->_nl = TRUE;
 
54
    T((T_CALLED("nl()")));
 
55
 
 
56
    SP->_nl = TRUE;
 
57
 
60
58
#ifdef __EMX__
61
59
    _nc_flush();
62
60
    _fsetmode(NC_OUTPUT, "t");
63
61
#endif
 
62
 
64
63
    returnCode(OK);
65
64
}
66
65
 
67
 
#if NCURSES_SP_FUNCS
68
 
NCURSES_EXPORT(int)
69
 
nl(void)
70
 
{
71
 
    return NCURSES_SP_NAME(nl) (CURRENT_SCREEN);
72
 
}
73
 
#endif
74
 
 
75
 
NCURSES_EXPORT(int)
76
 
NCURSES_SP_NAME(nonl) (NCURSES_SP_DCL0)
77
 
{
78
 
    T((T_CALLED("nonl(%p)"), SP_PARM));
79
 
    if (0 == SP_PARM)
80
 
        returnCode(ERR);
81
 
    SP_PARM->_nl = FALSE;
 
66
NCURSES_EXPORT(int)
 
67
nonl(void)
 
68
{
 
69
    T((T_CALLED("nonl()")));
 
70
 
 
71
    SP->_nl = FALSE;
 
72
 
82
73
#ifdef __EMX__
83
74
    _nc_flush();
84
75
    _fsetmode(NC_OUTPUT, "b");
85
76
#endif
 
77
 
86
78
    returnCode(OK);
87
79
}
88
 
 
89
 
#if NCURSES_SP_FUNCS
90
 
NCURSES_EXPORT(int)
91
 
nonl(void)
92
 
{
93
 
    return NCURSES_SP_NAME(nonl) (CURRENT_SCREEN);
94
 
}
95
 
#endif