Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@60329 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
ripley committed Aug 20, 2012
1 parent b3268dd commit 2b3f5ed
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
5 changes: 2 additions & 3 deletions src/appl/pretty.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/*
* R : A Computer Language for Statistical Data Analysis
* Copyright (C) 1995, 1996 Robert Gentleman and Ross Ihaka
* Copyright (C) 1998 Robert Gentleman, Ross Ihaka and the
* R Core Team
* Copyright (C) 1995-2012 The R Core Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -68,6 +66,7 @@
# define attribute_hidden
#endif

/* non-API, used by rgl */
double R_pretty0(double *lo, double *up, int *ndiv, int min_n,
double shrink_sml, double high_u_fact[],
int eps_correction, int return_bounds)
Expand Down
2 changes: 2 additions & 0 deletions src/gnuwin32/Rdll.hide
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,7 @@
do_attrgets
do_attributes
do_attributesgets
do_backsolve
do_baseenv
do_basename
do_bcclose
Expand Down Expand Up @@ -791,6 +792,7 @@
do_math4
do_matprod
do_matrix
do_maxcol
do_memCompress
do_memDecompress
do_memlimits
Expand Down
4 changes: 2 additions & 2 deletions src/include/R_ext/Applic.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void bakslv(double *, int *, int *,
void R_max_col(double *matrix, int *nr, int *nc, int *maxes, int *ties_meth);
#endif

/* appl/pretty.c: hidden, used in engine.c */
/* appl/pretty.c: hidden */
void R_pretty(double *lo, double *up, int *ndiv, int *min_n,
double *shrink_sml, double *high_u_fact,
int *eps_correction);
Expand Down Expand Up @@ -211,7 +211,7 @@ void optif9(int nr, int n, double *x,

/* Others */

/* appl/pretty.c non-API but used by GWAtoolbox and rgl */
/* appl/pretty.c non-API but used by engine.c, rgl and formerly GWAtoolbox */
double R_pretty0(double *lo, double *up, int *ndiv, int min_n,
double shrink_sml, double high_u_fact[],
int eps_correction, int return_bounds);
Expand Down
5 changes: 4 additions & 1 deletion src/include/Rmath.h0.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* -*- C -*-
* Mathlib : A C Library of Special Functions
* Copyright (C) 1998-2011 The R Core Team
* Copyright (C) 1998-2012 The R Core Team
* Copyright (C) 2004 The R Foundation
*
* This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -222,6 +222,7 @@ double Rlog1p(double);
#define dlogis Rf_dlogis
#define dnbeta Rf_dnbeta
#define dnbinom Rf_dnbinom
#define dnbinom_mu Rf_dnbinom_mu
#define dnchisq Rf_dnchisq
#define dnf Rf_dnf
#define dnorm4 Rf_dnorm4
Expand Down Expand Up @@ -266,6 +267,7 @@ double Rlog1p(double);
#define plogis Rf_plogis
#define pnbeta Rf_pnbeta
#define pnbinom Rf_pnbinom
#define pnbinom_mu Rf_pnbinom_mu
#define pnchisq Rf_pnchisq
#define pnf Rf_pnf
#define pnorm5 Rf_pnorm5
Expand Down Expand Up @@ -294,6 +296,7 @@ double Rlog1p(double);
#define qlogis Rf_qlogis
#define qnbeta Rf_qnbeta
#define qnbinom Rf_qnbinom
#define qnbinom_mu Rf_qnbinom_mu
#define qnchisq Rf_qnchisq
#define qnf Rf_qnf
#define qnorm5 Rf_qnorm5
Expand Down

0 comments on commit 2b3f5ed

Please sign in to comment.