view examples/info-emacs-octave-help @ 4777:279c255672ee

Added tag ss-2-1-54 for changeset adf8d68d7143
author jwe@segfault.lan
date Fri, 01 Feb 2008 20:55:43 -0500
parents 32259460c627
children 2a16423e4aa0
line wrap: on
line source

#!/bin/sh
# info-emacs-octave-help
# Written by KH <Kurt.Hornik@ci.tuwien.ac.at> on 1996/07/01
# Updated by KH on 1997/03/04
# Make Octave's `help -i' use Emacs octave-help.
# Requires a running Emacs and gnuserv.
cmd="(require 'octave-hlp)"
if [ $3 = "--directory" ];
then
    cmd="$cmd (add-to-list 'Info-directory-list \"$4\")"
    shift 2
fi
cmd="$cmd (octave-help \"$4\")"
gnudoit -q $cmd