Displaying 5 results from an estimated 5 matches for "newerf".
Did you mean:
newer
2000 Jul 12
1
buglet in fix() [was "function via source or fix"] (PR#602)
..., the function code appears, along
Erin> with the name/number of the environment.
Ok, in the above it was important that there's no *existing* object x.e
beforehand.
Note that the idea about fix() is that you only have to write
fix(x.e)
But your problem remains :
> fix(newerf)
Waiting for Emacs...Done --- I have options(editor = "emacsclient")
> newerf
function ()
{
## newer
}
<environment: 0x40862004>
> environment(newerf)
<environment: 0x40862004>
> ls(env=environment(newerf))
[1] "subx&q...
2000 Jul 12
1
function via source or fix
Hello R People:
Suppose I create a function, x.e, via the fix command:
> x.e <- fix(x.e)
When I type in x.e, the function code appears, along
with the name/number of the environment.
However, if I create a function, y.e, and source it in, when
I type in y.e, the function code only displays(no
environment).
Why is this, please? (It's not a bug....I just wondered).
I am using
2019 Jan 25
0
[klibc:update-dash] builtin: Greater resolution in test -nt / test -ot
...: Ben Hutchings <ben at decadent.org.uk>
---
usr/dash/bltin/test.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/usr/dash/bltin/test.c b/usr/dash/bltin/test.c
index 58c05fec..d1458df3 100644
--- a/usr/dash/bltin/test.c
+++ b/usr/dash/bltin/test.c
@@ -476,9 +476,17 @@ newerf (const char *f1, const char *f2)
{
struct stat b1, b2;
+#ifdef HAVE_ST_MTIM
+ return (stat (f1, &b1) == 0 &&
+ stat (f2, &b2) == 0 &&
+ ( b1.st_mtim.tv_sec > b2.st_mtim.tv_sec ||
+ (b1.st_mtim.tv_sec == b2.st_mtim.tv_sec && (b1.st_mtim.tv_nsec > b2.st_...
2020 Mar 28
0
[klibc:update-dash] dash: builtin: Greater resolution in test -nt / test -ot
...: Ben Hutchings <ben at decadent.org.uk>
---
usr/dash/bltin/test.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/usr/dash/bltin/test.c b/usr/dash/bltin/test.c
index 58c05fec..d1458df3 100644
--- a/usr/dash/bltin/test.c
+++ b/usr/dash/bltin/test.c
@@ -476,9 +476,17 @@ newerf (const char *f1, const char *f2)
{
struct stat b1, b2;
+#ifdef HAVE_ST_MTIM
+ return (stat (f1, &b1) == 0 &&
+ stat (f2, &b2) == 0 &&
+ ( b1.st_mtim.tv_sec > b2.st_mtim.tv_sec ||
+ (b1.st_mtim.tv_sec == b2.st_mtim.tv_sec && (b1.st_mtim.tv_nsec > b2.st_...
2019 Oct 07
2
Is imap "list" required before imap "select" for shared folder?
I set up a shared mailbox with dovecot and it basically works. However,
before I can imap SELECT or STATUS the shared mailbox I have to first do
an imap LIST, i.e,
. list "" *
If list is not done first, the imap select or status command on the
shared mailbox results in a "NO" response with "mailbox doesn't exist"
response text.
I can provide more