mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-29 07:58:21 +00:00
75ca89400a
A new perl program, list-hooks.pl, now extracts the full list of hook and function variables in Org, for inclusion into Worg's org-hooks.org. Also, add a docstring to a few hooks that did not have one.
33 lines
811 B
Perl
Executable File
33 lines
811 B
Perl
Executable File
#!/usr/bin/perl
|
|
@files = glob("lisp/org-*.el");
|
|
unshift @files,"lisp/org.el";
|
|
|
|
print "* Hooks and Function variables\n\n";
|
|
|
|
foreach $file (@files) {
|
|
($file1 = $file) =~ s|.*/||;
|
|
open IN,"<$file" or die "Cannot open file $file\n";
|
|
while (<IN>) {
|
|
if (/^\((defvar|defcustom)\s+(org-.*?-(hook|functions?)\b)/) {
|
|
$deftype = $1;
|
|
$name = $2;
|
|
$_=<IN> while (not m/^\s*"/);
|
|
$doc = $_;
|
|
while (not m/(?<!\\)"\)?\s*$/) {
|
|
$_=<IN>;
|
|
$doc .=$_;
|
|
}
|
|
$doc =~ s/\A\s*"//;
|
|
$doc =~ s/"\)?\s*\Z//;
|
|
print "** =$name=\n";
|
|
print "Defined in: /$file1/\n";
|
|
print "#+begin_example\n";
|
|
@lines = split(/\n/,$doc);
|
|
@lines = map { $_ = " " . $_ } @lines;
|
|
$doc = join("\n",@lines);
|
|
print "$doc\n";
|
|
print "#+end_example\n";
|
|
}
|
|
}
|
|
}
|