~ubuntu-branches/ubuntu/trusty/screen/trusty-proposed

« back to all changes in this revision

Viewing changes to misc.c

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2008-06-12 19:33:30 UTC
  • mfrom: (1.1.13 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080612193330-1tt3qhpxonbgdmq2
Tags: 4.0.3-11
* Unbreak <End> and <^A Bksp> using a patch from Loïc Minier
  (thanks!) - introduced as new 45suppress_remap.dpatch.
  Closes: #484647.
* Bump Standards version to 3.8.0. No changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
613
613
   */
614
614
# endif /* NEEDSETENV */
615
615
#else /* USESETENV */
616
 
# if defined(__GLIBC__) || defined(__convex__) || (BSD >= 199103)
 
616
# if defined(linux) || defined(__convex__) || (BSD >= 199103)
617
617
  setenv(var, value, 1);
618
618
# else
619
619
  setenv(var, value);
620
 
# endif /* __GLIBC__ || convex || BSD >= 199103 */
 
620
# endif /* linux || convex || BSD >= 199103 */
621
621
#endif /* USESETENV */
622
622
}
623
623