Mercurial > emacs
view lispintro/mkinstalldirs @ 46477:1e108eb581e8
(store_frame_title, string_char_and_length):
(message_dolog, message2, message2_nolog, set_message): String
pointer args now point to const.
(set_message_1): Cast message string argument to const pointer.
(string_pos_nchars_ahead, init_from_display_pos):
(face_before_or_after_it_pos, next_element_from_string):
(get_overlay_arrow_glyph_row, display_mode_element):
(decode_mode_spec_coding): Use const for pointer to lisp string
data.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Tue, 16 Jul 2002 19:49:12 +0000 |
parents | a8ee89e61d20 |
children | f0eb34e60705 746c40973d25 |
line wrap: on
line source
#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 # Public domain # $Id: mkinstalldirs,v 1.10 1996/05/03 07:37:52 friedman Exp $ errstatus=0 for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case "$pathcomp" in -* ) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" 1>&2 mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr fi fi pathcomp="$pathcomp/" done done exit $errstatus # mkinstalldirs ends here