~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to lex.l

  • Committer: Matthew Fuller
  • Date: 2015-07-13 03:59:47 UTC
  • Revision ID: fullermd@over-yonder.net-20150713035947-vnhk039irmvispc9
Remove the f.cut, f.cutfile, and f.file functions for messing with the
clipboard.  They were "documented" in commented-out bits in the
manpage as obsolete, which were added pre-commented-out in 3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
                                }
107
107
 
108
108
"!"                             { yylval.num = F_EXEC; return FSKEYWORD; }
109
 
"^"                             { yylval.num = F_CUT; return FSKEYWORD; }
110
109
 
111
110
{string}                        { yylval.ptr = yytext; return STRING; }
112
111
{number}                        { (void)sscanf(yytext, "%d", &yylval.num);