summaryrefslogtreecommitdiff
BranchCommit messageAuthorAge
mainMerge branch 'bugfix'Ihor Radchenko30 hours
bugfixorg-self-insert-command: Prevent deleting selection for speed commandsIhor Radchenko30 hours
emacs-syncUpdate hard-coded versions for sync with EmacsKyle Meyer8 weeks
 
TagDownloadAuthorAge
release_9.6.26org-mode-release_9.6.26.tar.gz  Ihor Radchenko4 days
release_9.6.25org-mode-release_9.6.25.tar.gz  Ihor Radchenko11 days
release_9.6.24org-mode-release_9.6.24.tar.gz  Ihor Radchenko3 weeks
release_9.6.23org-mode-release_9.6.23.tar.gz  Ihor Radchenko3 weeks
release_9.6.22org-mode-release_9.6.22.tar.gz  Ihor Radchenko4 weeks
release_9.6.21org-mode-release_9.6.21.tar.gz  Ihor Radchenko6 weeks
release_9.6.20org-mode-release_9.6.20.tar.gz  Ihor Radchenko7 weeks
release_9.6.19org-mode-release_9.6.19.tar.gz  Ihor Radchenko2 months
release_9.6.18org-mode-release_9.6.18.tar.gz  Ihor Radchenko2 months
release_9.6.17org-mode-release_9.6.17.tar.gz  Ihor Radchenko3 months
[...]
 
AgeCommit messageAuthorFilesLines
30 hoursMerge branch 'bugfix'HEADmainIhor Radchenko1-8/+14
30 hoursorg-self-insert-command: Prevent deleting selection for speed commandsbugfixIhor Radchenko1-8/+14
33 hoursorg-fold: Optimize fontification of link foldsIhor Radchenko2-15/+23
2 daysAllow clock elements without timestamp, like CLOCK: => 12:00Ihor Radchenko2-14/+34
2 daysorg-html-toc: Fix duplicate ids when there are multiples TOCsIhor Radchenko1-4/+9
3 daysMerge branch 'bugfix'Ihor Radchenko1-2/+3
3 daysorg-link-open-as-file: Do not try dired wildcard expansion when file existsIhor Radchenko1-2/+3
4 daysMerge branch 'bugfix'Ihor Radchenko1-0/+5
4 daysorg-table-header-line-mode: Fix when cursor is outside tableLei Zhe1-0/+5
4 daysorg-table-eval-formula: Keep empty result in duration (;TtU) modeIhor Radchenko1-5/+10
[...]
 
Clone
git://git.savannah.gnu.org/emacs/org-mode.git
https://git.savannah.gnu.org/git/emacs/org-mode.git
ssh://git.savannah.gnu.org/srv/git/emacs/org-mode.git
l kwa">then echo >&2 "Missing executable '$IFCONFIG'. Skipping test." exit 77 fi if test -z "${VERBOSE+set}"; then silence=: bucket='>/dev/null' fi if test -n "$VERBOSE"; then set -x $IFCONFIG --version | $SED '1q' fi # Locate the loopback interface. # # Avoid cases where `lo' is a substring # of another interface name, like for # `pflog0' of OpenBSD. # IF_LIST=`$IFCONFIG -l` for nn in $IF_LIST; do LO=`expr $nn : '\(lo0\{0,\}\).*'` test -z "$LO" || break done if test -z "$LO"; then echo >&2 'Unable to locate loopback interface. Failing.' exit 1 fi target=`echo $TARGET | $SED -e 's,\.,\\\\&,g'` find_lo_addr () { $IFCONFIG ${1+--format=$1} -i $LO | \ eval $GREP "'inet .*$target'" $bucket 2>/dev/null } errno=0 # Check for loopback address in all formats displaying the # standard address $TARGET, commonly 127.0.0.1. # for fmt in ${FORMAT:-gnu gnu-one-entry net-tools osf unix}; do $silence echo "Checking format $fmt." find_lo_addr $fmt || { errno=1; echo >&2 "Failed with format '$fmt'."; } done # Check that all listed adapters are responding affirmatively # to all formats, but discard all output. # for fmt in check default gnu gnu-one-entry netstat net-tools osf unix do for iface in $IF_LIST; do $IFCONFIG --format=$fmt -i $iface >/dev/null || { errno=1; echo >&2 "Failed with format '$fmt', adapter '$iface'." } done done # Check that short format and full printout succeed; discard output. # $IFCONFIG --short >/dev/null || { errno=1; echo >&2 'Failed with short format.'; } $IFCONFIG --all >/dev/null || { errno=1; echo >&2 'Failed while listing all.'; } # Informational check whether the legacy form use # is implemented. No error produced, only message. # if $IFCONFIG $LO >/dev/null 2>&1; then : else cat <<-EOT Hint: This system does not yet support the legacy use which does without switches: ifconfig $LO EOT fi test $errno -ne 0 || $silence echo "Successful testing". exit $errno