1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/* $Header$ */
/*
* Copyright © 1988-2004 Keith Packard and Bart Massey.
* All Rights Reserved. See the file COPYING in this directory
* for licensing information.
*/
/*
* edit.c
*
* invoke the users editor (default /bin/ed)
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include "nickle.h"
#ifndef DEFAULT_EDITOR
#define DEFAULT_EDITOR "ed"
#endif
static void
edit (char *file_name)
{
char buf[1024];
char *editor;
if (!(editor = getenv ("EDITOR")))
editor = DEFAULT_EDITOR;
if (!file_name)
file_name = "";
(void) sprintf (buf, "%s %s", editor, file_name);
IoStop ();
(void) system (buf);
IoStart ();
}
void
EditFunction (SymbolPtr symbol, Publish publish)
{
Value tmp;
static const char template[] = "/tmp/nXXXXXX";
static const char exten[] = ".5c";
char tmpName[sizeof (template)];
char nickleName[sizeof (template) + sizeof (exten) + 2];
int fd;
(void) strcpy (tmpName, template);
fd = mkstemp (tmpName);
if (fd < 0)
return;
strcpy (nickleName, tmpName);
strcat (nickleName, exten);
if (rename (tmpName, nickleName) < 0)
{
close (fd);
unlink (tmpName);
return;
}
tmp = FileCreate (fd, FileWritable);
if (tmp)
{
PrettyPrint (tmp, publish, symbol);
(void) FileClose (tmp);
edit (nickleName);
LexFile (nickleName, True, False);
}
(void) unlink (nickleName);
}
void
EditFile (Value file_name)
{
if (!file_name)
{
edit (0);
}
else
{
char *name = StrzPart (file_name, "invalid filename");
if (name)
edit (name);
}
}
|