blob: 3a04bb08351c9050b7492e144aab25674e6e0e2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ "$2" != "POST-INSTALL" ]; then exit 0; fi
echo "####################################################################"
echo "If you want to use 'SJ3' as a japanese input method, then you should"
echo "insert the following two lines into ~/.emacs"
echo ""
echo "(load \"sj3-egg\")"
echo "(setq egg-default-startup-file \"eggrc-sj3\")"
echo "####################################################################"
|