You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(2) |
Feb
(9) |
Mar
(6) |
Apr
(8) |
May
(7) |
Jun
(49) |
Jul
(36) |
Aug
(8) |
Sep
(4) |
Oct
(11) |
Nov
(3) |
Dec
|
| 2002 |
Jan
(8) |
Feb
|
Mar
(7) |
Apr
(2) |
May
|
Jun
(3) |
Jul
(9) |
Aug
(2) |
Sep
|
Oct
(3) |
Nov
|
Dec
(2) |
| 2003 |
Jan
(6) |
Feb
|
Mar
(2) |
Apr
(3) |
May
|
Jun
(5) |
Jul
|
Aug
(6) |
Sep
(6) |
Oct
(2) |
Nov
|
Dec
|
| 2004 |
Jan
(2) |
Feb
(12) |
Mar
|
Apr
(10) |
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(2) |
Dec
(4) |
| 2005 |
Jan
(4) |
Feb
(6) |
Mar
(3) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2006 |
Jan
|
Feb
(2) |
Mar
|
Apr
(12) |
May
(2) |
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(11) |
Oct
(10) |
Nov
|
Dec
|
| 2007 |
Jan
(4) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
| 2008 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
(2) |
May
|
Jun
(6) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(8) |
| 2010 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
(1) |
3
|
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
|
18
|
19
|
20
|
21
|
22
(2) |
23
|
24
|
|
25
|
26
|
27
|
28
|
29
|
30
|
|
|
From: Hans-Bernhard B. <br...@us...> - 2001-11-22 17:38:23
|
Update of /cvsroot/cscope/cscope/src In directory usw-pr-cvs1:/tmp/cvs-serv22236/src Modified Files: build.c command.c library.h Log Message: Some compiler warnings quenched Index: build.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/build.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** build.c 2001/10/10 16:49:22 1.3 --- build.c 2001/11/22 17:38:19 1.4 *************** *** 46,49 **** --- 46,55 ---- #include "vp.h" + #if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) + #include <ncurses.h> + #else + #include <curses.h> + #endif + /* Exported variables: */ Index: command.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/command.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** command.c 2001/10/19 15:32:27 1.16 --- command.c 2001/11/22 17:38:19 1.17 *************** *** 37,40 **** --- 37,41 ---- #include "global.h" + #include "build.h" /* for rebuild() */ #include <stdlib.h> #if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) Index: library.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/library.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** library.h 2001/07/05 16:47:04 1.8 --- library.h 2001/11/22 17:38:19 1.9 *************** *** 59,63 **** * #include the relevant header, instead. Moreover, they don't seem * to be used, anyway ... */ char *regcmp(), *regex(); ! #endif /* CSCOPE_LIBRARY_H */ --- 59,64 ---- * #include the relevant header, instead. Moreover, they don't seem * to be used, anyway ... */ + #if 0 char *regcmp(), *regex(); ! #endif #endif /* CSCOPE_LIBRARY_H */ |
|
From: Hans-Bernhard B. <br...@us...> - 2001-11-22 17:38:23
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv22236 Modified Files: ChangeLog Log Message: Some compiler warnings quenched Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.106 retrieving revision 1.107 diff -C2 -r1.106 -r1.107 *** ChangeLog 2001/10/30 21:45:04 1.106 --- ChangeLog 2001/11/22 17:38:19 1.107 *************** *** 1,2 **** --- 1,4 ---- + (2001/11/22 - broeker) Quell some compiler warnings cause by missing #includes + and private declarations of system library functions. (2001/10/30 - petrs) Added Joe Steffen to author's list as the creator. (2001/10/19 - broeker) Replace usages of freopen() by fclose()/fopen() pairs |
|
From: Darryl O. <da...@us...> - 2001-11-02 00:42:59
|
Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv2121
Modified Files:
xcscope.el
Log Message:
Cursor handling tweaks in the output buffer
Index: xcscope.el
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/xcscope.el,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** xcscope.el 2001/10/17 01:00:03 1.11
--- xcscope.el 2001/11/02 00:42:55 1.12
***************
*** 7,11 ****
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Wed Jul 18 19:27:09 2001 (Darryl Okahata) da...@so...
; Language: Emacs-Lisp
; Package: N/A
--- 7,11 ----
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Thu Nov 1 16:34:54 2001 (Darryl Okahata) da...@so...
; Language: Emacs-Lisp
; Package: N/A
***************
*** 1771,1776 ****
(save-window-excursion
(save-excursion
! (if (and (setq window (get-buffer-window buffer))
! (= (window-point window) (point-max)))
(progn
(setq update-window t)
--- 1771,1777 ----
(save-window-excursion
(save-excursion
! (if (or (and (setq window (get-buffer-window buffer))
! (= (window-point window) (point-max)))
! (= (point) (point-max)))
(progn
(setq update-window t)
***************
*** 1779,1783 ****
(let (buffer-read-only continue)
(goto-char (point-max))
! (if (= cscope-output-start (point))
(message "No matches were found."))
(if (and cscope-suppress-empty-matches
--- 1780,1784 ----
(let (buffer-read-only continue)
(goto-char (point-max))
! (if (not cscope-first-match)
(message "No matches were found."))
(if (and cscope-suppress-empty-matches
***************
*** 1820,1832 ****
(set-buffer-modified-p nil)
))
! (if (and done cscope-first-match-point)
! (if update-window
(set-window-point window cscope-first-match-point)
! (goto-char cscope-first-match-point)))
(cond
( (not done) ;; we're not done -- do nothing for now
(if update-window
! (set-window-point window (point-max))
! (goto-char (point-max)))
)
( cscope-first-match
--- 1821,1835 ----
(set-buffer-modified-p nil)
))
! (if (and done cscope-first-match-point update-window)
! (if window
(set-window-point window cscope-first-match-point)
! (goto-char cscope-first-match-point))
! )
(cond
( (not done) ;; we're not done -- do nothing for now
(if update-window
! (if window
! (set-window-point window (point-max))
! (goto-char (point-max))))
)
( cscope-first-match
***************
*** 1838,1841 ****
--- 1841,1846 ----
)
)
+ (if (and done (eq old-buffer buffer))
+ (cscope-help))
(set-buffer old-buffer)
))
|