summaryrefslogtreecommitdiffstats
path: root/contrib/less/mark.c
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2009-05-08 23:34:35 +0000
committerdelphij <delphij@FreeBSD.org>2009-05-08 23:34:35 +0000
commitd069efd47cacc3156036ed37d5532d6a1d4f55c3 (patch)
tree2526f6b109843b646672c1537476dc51e56c0454 /contrib/less/mark.c
parent6aa3e25391d160482339ee072c010bcd22dfbbd1 (diff)
downloadFreeBSD-src-d069efd47cacc3156036ed37d5532d6a1d4f55c3.zip
FreeBSD-src-d069efd47cacc3156036ed37d5532d6a1d4f55c3.tar.gz
Flatten all tags of the dist tree of less.
Diffstat (limited to 'contrib/less/mark.c')
-rw-r--r--contrib/less/mark.c258
1 files changed, 0 insertions, 258 deletions
diff --git a/contrib/less/mark.c b/contrib/less/mark.c
deleted file mode 100644
index 870f426..0000000
--- a/contrib/less/mark.c
+++ /dev/null
@@ -1,258 +0,0 @@
-/*
- * Copyright (C) 1984-2007 Mark Nudelman
- *
- * You may distribute under the terms of either the GNU General Public
- * License or the Less License, as specified in the README file.
- *
- * For more information about less, or for information on how to
- * contact the author, see the README file.
- */
-
-
-#include "less.h"
-
-extern IFILE curr_ifile;
-extern int sc_height;
-extern int jump_sline;
-
-/*
- * A mark is an ifile (input file) plus a position within the file.
- */
-struct mark {
- IFILE m_ifile;
- struct scrpos m_scrpos;
-};
-
-/*
- * The table of marks.
- * Each mark is identified by a lowercase or uppercase letter.
- * The final one is lmark, for the "last mark"; addressed by the apostrophe.
- */
-#define NMARKS ((2*26)+1) /* a-z, A-Z, lastmark */
-#define LASTMARK (NMARKS-1)
-static struct mark marks[NMARKS];
-
-/*
- * Initialize the mark table to show no marks are set.
- */
- public void
-init_mark()
-{
- int i;
-
- for (i = 0; i < NMARKS; i++)
- marks[i].m_scrpos.pos = NULL_POSITION;
-}
-
-/*
- * See if a mark letter is valid (between a and z).
- */
- static struct mark *
-getumark(c)
- int c;
-{
- if (c >= 'a' && c <= 'z')
- return (&marks[c-'a']);
-
- if (c >= 'A' && c <= 'Z')
- return (&marks[c-'A'+26]);
-
- error("Invalid mark letter", NULL_PARG);
- return (NULL);
-}
-
-/*
- * Get the mark structure identified by a character.
- * The mark struct may come either from the mark table
- * or may be constructed on the fly for certain characters like ^, $.
- */
- static struct mark *
-getmark(c)
- int c;
-{
- register struct mark *m;
- static struct mark sm;
-
- switch (c)
- {
- case '^':
- /*
- * Beginning of the current file.
- */
- m = &sm;
- m->m_scrpos.pos = ch_zero();
- m->m_scrpos.ln = 0;
- m->m_ifile = curr_ifile;
- break;
- case '$':
- /*
- * End of the current file.
- */
- if (ch_end_seek())
- {
- error("Cannot seek to end of file", NULL_PARG);
- return (NULL);
- }
- m = &sm;
- m->m_scrpos.pos = ch_tell();
- m->m_scrpos.ln = sc_height-1;
- m->m_ifile = curr_ifile;
- break;
- case '.':
- /*
- * Current position in the current file.
- */
- m = &sm;
- get_scrpos(&m->m_scrpos);
- m->m_ifile = curr_ifile;
- break;
- case '\'':
- /*
- * The "last mark".
- */
- m = &marks[LASTMARK];
- break;
- default:
- /*
- * Must be a user-defined mark.
- */
- m = getumark(c);
- if (m == NULL)
- break;
- if (m->m_scrpos.pos == NULL_POSITION)
- {
- error("Mark not set", NULL_PARG);
- return (NULL);
- }
- break;
- }
- return (m);
-}
-
-/*
- * Is a mark letter is invalid?
- */
- public int
-badmark(c)
- int c;
-{
- return (getmark(c) == NULL);
-}
-
-/*
- * Set a user-defined mark.
- */
- public void
-setmark(c)
- int c;
-{
- register struct mark *m;
- struct scrpos scrpos;
-
- m = getumark(c);
- if (m == NULL)
- return;
- get_scrpos(&scrpos);
- m->m_scrpos = scrpos;
- m->m_ifile = curr_ifile;
-}
-
-/*
- * Set lmark (the mark named by the apostrophe).
- */
- public void
-lastmark()
-{
- struct scrpos scrpos;
-
- if (ch_getflags() & CH_HELPFILE)
- return;
- get_scrpos(&scrpos);
- if (scrpos.pos == NULL_POSITION)
- return;
- marks[LASTMARK].m_scrpos = scrpos;
- marks[LASTMARK].m_ifile = curr_ifile;
-}
-
-/*
- * Go to a mark.
- */
- public void
-gomark(c)
- int c;
-{
- register struct mark *m;
- struct scrpos scrpos;
-
- m = getmark(c);
- if (m == NULL)
- return;
-
- /*
- * If we're trying to go to the lastmark and
- * it has not been set to anything yet,
- * set it to the beginning of the current file.
- */
- if (m == &marks[LASTMARK] && m->m_scrpos.pos == NULL_POSITION)
- {
- m->m_ifile = curr_ifile;
- m->m_scrpos.pos = ch_zero();
- m->m_scrpos.ln = jump_sline;
- }
-
- /*
- * If we're using lmark, we must save the screen position now,
- * because if we call edit_ifile() below, lmark will change.
- * (We save the screen position even if we're not using lmark.)
- */
- scrpos = m->m_scrpos;
- if (m->m_ifile != curr_ifile)
- {
- /*
- * Not in the current file; edit the correct file.
- */
- if (edit_ifile(m->m_ifile))
- return;
- }
-
- jump_loc(scrpos.pos, scrpos.ln);
-}
-
-/*
- * Return the position associated with a given mark letter.
- *
- * We don't return which screen line the position
- * is associated with, but this doesn't matter much,
- * because it's always the first non-blank line on the screen.
- */
- public POSITION
-markpos(c)
- int c;
-{
- register struct mark *m;
-
- m = getmark(c);
- if (m == NULL)
- return (NULL_POSITION);
-
- if (m->m_ifile != curr_ifile)
- {
- error("Mark not in current file", NULL_PARG);
- return (NULL_POSITION);
- }
- return (m->m_scrpos.pos);
-}
-
-/*
- * Clear the marks associated with a specified ifile.
- */
- public void
-unmark(ifile)
- IFILE ifile;
-{
- int i;
-
- for (i = 0; i < NMARKS; i++)
- if (marks[i].m_ifile == ifile)
- marks[i].m_scrpos.pos = NULL_POSITION;
-}
OpenPOWER on IntegriCloud