~ubuntu-branches/ubuntu/karmic/emacs-snapshot/karmic

« back to all changes in this revision

Viewing changes to lib-src/ebrowse.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-04-05 09:14:30 UTC
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090405091430-nw07lynn2arotjbe
Tags: upstream-20090320
ImportĀ upstreamĀ versionĀ 20090320

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ebrowse.c --- parsing files for the ebrowse C++ browser
2
2
 
3
3
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4
 
              2002, 2003, 2004, 2005, 2006, 2007, 2008
 
4
              2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5
5
              Free Software Foundation, Inc.
6
6
 
7
7
This file is part of GNU Emacs.
2033
2033
      while (in - p < min_regexp && p > inbuffer)
2034
2034
        {
2035
2035
          /* Line probably not significant enough */
2036
 
          for (--p; p >= inbuffer && *p != '\n'; --p)
 
2036
          for (--p; p > inbuffer && *p != '\n'; --p)
2037
2037
            ;
2038
2038
        }
2039
2039
      if (*p == '\n')
3680
3680
version ()
3681
3681
{
3682
3682
  /* Makes it easier to update automatically. */
3683
 
  char emacs_copyright[] = "Copyright (C) 2008 Free Software Foundation, Inc.";
 
3683
  char emacs_copyright[] = "Copyright (C) 2009 Free Software Foundation, Inc.";
3684
3684
 
3685
3685
  printf ("ebrowse %s\n", VERSION);
3686
3686
  puts (emacs_copyright);