亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? init.tcl

?? windml3.0.3
?? TCL
?? 第 1 頁 / 共 2 頁
字號:
# init.tcl --
#
# Default system startup file for Tcl-based applications.  Defines
# "unknown" procedure and auto-load facilities.
#
# SCCS: @(#) init.tcl 1.95 97/11/19 17:16:34
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#

if {[info commands package] == ""} {
    error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]"
}
package require -exact Tcl 8.0

# Compute the auto path to use in this interpreter.
# (auto_path could be already set, in safe interps for instance)

if {![info exists auto_path]} {
    if [catch {set auto_path $env(TCLLIBPATH)}] {
	set auto_path ""
    }
}
if {[lsearch -exact $auto_path [info library]] < 0} {
    lappend auto_path [info library]
}
catch {
    foreach __dir $tcl_pkgPath {
	if {[lsearch -exact $auto_path $__dir] < 0} {
	    lappend auto_path $__dir
	}
    }
    unset __dir
}

# Setup the unknown package handler

package unknown tclPkgUnknown

# Conditionalize for presence of exec.

if {[info commands exec] == ""} {

    # Some machines, such as the Macintosh, do not have exec. Also, on all
    # platforms, safe interpreters do not have exec.

    set auto_noexec 1
}
set errorCode ""
set errorInfo ""

# Define a log command (which can be overwitten to log errors
# differently, specially when stderr is not available)

if {[info commands tclLog] == ""} {
    proc tclLog {string} {
	catch {puts stderr $string}
    }
}

# The procs defined in this file that have a leading space
# are 'hidden' from auto_mkindex because they are not
# auto-loadable.


# unknown --
# This procedure is called when a Tcl command is invoked that doesn't
# exist in the interpreter.  It takes the following steps to make the
# command available:
#
#	1. See if the autoload facility can locate the command in a
#	   Tcl script file.  If so, load it and execute it.
#	2. If the command was invoked interactively at top-level:
#	    (a) see if the command exists as an executable UNIX program.
#		If so, "exec" the command.
#	    (b) see if the command requests csh-like history substitution
#		in one of the common forms !!, !<number>, or ^old^new.  If
#		so, emulate csh's history substitution.
#	    (c) see if the command is a unique abbreviation for another
#		command.  If so, invoke the command.
#
# Arguments:
# args -	A list whose elements are the words of the original
#		command, including the command name.

 proc unknown args {
    global auto_noexec auto_noload env unknown_pending tcl_interactive
    global errorCode errorInfo

    # Save the values of errorCode and errorInfo variables, since they
    # may get modified if caught errors occur below.  The variables will
    # be restored just before re-executing the missing command.

    set savedErrorCode $errorCode
    set savedErrorInfo $errorInfo
    set name [lindex $args 0]
    if ![info exists auto_noload] {
	#
	# Make sure we're not trying to load the same proc twice.
	#
	if [info exists unknown_pending($name)] {
	    return -code error "self-referential recursion in \"unknown\" for command \"$name\"";
	}
	set unknown_pending($name) pending;
	set ret [catch {auto_load $name [uplevel 1 {namespace current}]} msg]
	unset unknown_pending($name);
	if {$ret != 0} {
	    return -code $ret -errorcode $errorCode \
		"error while autoloading \"$name\": $msg"
	}
	if ![array size unknown_pending] {
	    unset unknown_pending
	}
	if $msg {
	    set errorCode $savedErrorCode
	    set errorInfo $savedErrorInfo
	    set code [catch {uplevel 1 $args} msg]
	    if {$code ==  1} {
		#
		# Strip the last five lines off the error stack (they're
		# from the "uplevel" command).
		#

		set new [split $errorInfo \n]
		set new [join [lrange $new 0 [expr [llength $new] - 6]] \n]
		return -code error -errorcode $errorCode \
			-errorinfo $new $msg
	    } else {
		return -code $code $msg
	    }
	}
    }

    if {([info level] == 1) && ([info script] == "") \
	    && [info exists tcl_interactive] && $tcl_interactive} {
	if ![info exists auto_noexec] {
	    set new [auto_execok $name]
	    if {$new != ""} {
		set errorCode $savedErrorCode
		set errorInfo $savedErrorInfo
		set redir ""
		if {[info commands console] == ""} {
		    set redir ">&@stdout <@stdin"
		}
		return [uplevel exec $redir $new [lrange $args 1 end]]
	    }
	}
	set errorCode $savedErrorCode
	set errorInfo $savedErrorInfo
	if {$name == "!!"} {
	    set newcmd [history event]
	} elseif {[regexp {^!(.+)$} $name dummy event]} {
	    set newcmd [history event $event]
	} elseif {[regexp {^\^([^^]*)\^([^^]*)\^?$} $name dummy old new]} {
	    set newcmd [history event -1]
	    catch {regsub -all -- $old $newcmd $new newcmd}
	}
	if [info exists newcmd] {
	    tclLog $newcmd
	    history change $newcmd 0
	    return [uplevel $newcmd]
	}

	set ret [catch {set cmds [info commands $name*]} msg]
	if {[string compare $name "::"] == 0} {
	    set name ""
	}
	if {$ret != 0} {
	    return -code $ret -errorcode $errorCode \
		"error in unknown while checking if \"$name\" is a unique command abbreviation: $msg"
	}
	if {[llength $cmds] == 1} {
	    return [uplevel [lreplace $args 0 0 $cmds]]
	}
	if {[llength $cmds] != 0} {
	    if {$name == ""} {
		return -code error "empty command name \"\""
	    } else {
		return -code error \
			"ambiguous command name \"$name\": [lsort $cmds]"
	    }
	}
    }
    return -code error "invalid command name \"$name\""
}

# auto_load --
# Checks a collection of library directories to see if a procedure
# is defined in one of them.  If so, it sources the appropriate
# library file to create the procedure.  Returns 1 if it successfully
# loaded the procedure, 0 otherwise.
#
# Arguments: 
# cmd -			Name of the command to find and load.
# namespace (optional)  The namespace where the command is being used - must be
#                       a canonical namespace as returned [namespace current]
#                       for instance. If not given, namespace current is used.

 proc auto_load {cmd {namespace {}}} {
    global auto_index auto_oldpath auto_path env errorInfo errorCode

    if {[string length $namespace] == 0} {
	set namespace [uplevel {namespace current}]
    }
    set nameList [auto_qualify $cmd $namespace]
    # workaround non canonical auto_index entries that might be around
    # from older auto_mkindex versions
    lappend nameList $cmd
    foreach name $nameList {
	if [info exists auto_index($name)] {
	    uplevel #0 $auto_index($name)
	    return [expr {[info commands $name] != ""}]
	}
    }
    if ![info exists auto_path] {
	return 0
    }
    if [info exists auto_oldpath] {
	if {$auto_oldpath == $auto_path} {
	    return 0
	}
    }
    set auto_oldpath $auto_path

    # Check if we are a safe interpreter. In that case, we support only
    # newer format tclIndex files.

    set issafe [interp issafe]
    for {set i [expr [llength $auto_path] - 1]} {$i >= 0} {incr i -1} {
	set dir [lindex $auto_path $i]
	set f ""
	if {$issafe} {
	    catch {source [file join $dir tclIndex]}
	} elseif [catch {set f [open [file join $dir tclIndex]]}] {
	    continue
	} else {
	    set error [catch {
		set id [gets $f]
		if {$id == "# Tcl autoload index file, version 2.0"} {
		    eval [read $f]
		} elseif {$id == \
		    "# Tcl autoload index file: each line identifies a Tcl"} {
		    while {[gets $f line] >= 0} {
			if {([string index $line 0] == "#")
				|| ([llength $line] != 2)} {
			    continue
			}
			set name [lindex $line 0]
			set auto_index($name) \
			    "source [file join $dir [lindex $line 1]]"
		    }
		} else {
		    error \
		      "[file join $dir tclIndex] isn't a proper Tcl index file"
		}
	    } msg]
	    if {$f != ""} {
		close $f
	    }
	    if $error {
		error $msg $errorInfo $errorCode
	    }
	}
    }
    foreach name $nameList {
	if [info exists auto_index($name)] {
	    uplevel #0 $auto_index($name)
	    if {[info commands $name] != ""} {
		return 1
	    }
	}
    }
    return 0
}

# auto_qualify --
# compute a fully qualified names list for use in the auto_index array.
# For historical reasons, commands in the global namespace do not have leading
# :: in the index key. The list has two elements when the command name is
# relative (no leading ::) and the namespace is not the global one. Otherwise
# only one name is returned (and searched in the auto_index).
#
# Arguments -
# cmd		The command name. Can be any name accepted for command
#               invocations (Like "foo::::bar").
# namespace	The namespace where the command is being used - must be
#               a canonical namespace as returned by [namespace current]
#               for instance.

 proc auto_qualify {cmd namespace} {

    # count separators and clean them up
    # (making sure that foo:::::bar will be treated as foo::bar)
    set n [regsub -all {::+} $cmd :: cmd]

    # Ignore namespace if the name starts with ::
    # Handle special case of only leading ::

    # Before each return case we give an example of which category it is
    # with the following form :
    # ( inputCmd, inputNameSpace) -> output

    if {[regexp {^::(.*)$} $cmd x tail]} {
	if {$n > 1} {
	    # ( ::foo::bar , * ) -> ::foo::bar
	    return [list $cmd]
	} else {
	    # ( ::global , * ) -> global
	    return [list $tail]
	}
    }
    
    # Potentially returning 2 elements to try  :
    # (if the current namespace is not the global one)

    if {$n == 0} {
	if {[string compare $namespace ::] == 0} {
	    # ( nocolons , :: ) -> nocolons
	    return [list $cmd]
	} else {
	    # ( nocolons , ::sub ) -> ::sub::nocolons nocolons
	    return [list ${namespace}::$cmd $cmd]
	}
    } else {
	if {[string compare $namespace ::] == 0} {
	    #  ( foo::bar , :: ) -> ::foo::bar
	    return [list ::$cmd]
	} else {
	    # ( foo::bar , ::sub ) -> ::sub::foo::bar ::foo::bar
	    return [list ${namespace}::$cmd ::$cmd]
	}
    }
}

if {[string compare $tcl_platform(platform) windows] == 0} {

# auto_execok --
#
# Returns string that indicates name of program to execute if 
# name corresponds to a shell builtin or an executable in the
# Windows search path, or "" otherwise.  Builds an associative 
# array auto_execs that caches information about previous checks, 
# for speed.
#
# Arguments: 
# name -			Name of a command.

# Windows version.
#
# Note that info executable doesn't work under Windows, so we have to
# look for files with .exe, .com, or .bat extensions.  Also, the path
# may be in the Path or PATH environment variables, and path
# components are separated with semicolons, not colons as under Unix.
#
proc auto_execok name {
    global auto_execs env tcl_platform

    if [info exists auto_execs($name)] {
	return $auto_execs($name)
    }
    set auto_execs($name) ""

    if {[lsearch -exact {cls copy date del erase dir echo mkdir md rename 
	    ren rmdir rd time type ver vol} $name] != -1} {
	return [set auto_execs($name) [list $env(COMSPEC) /c $name]]
    }

    if {[llength [file split $name]] != 1} {
	foreach ext {{} .com .exe .bat} {
	    set file ${name}${ext}
	    if {[file exists $file] && ![file isdirectory $file]} {
		return [set auto_execs($name) [list $file]]
	    }
	}
	return ""
    }

    set path "[file dirname [info nameof]];.;"
    if {[info exists env(WINDIR)]} {
	set windir $env(WINDIR) 
    }
    if {[info exists windir]} {
	if {$tcl_platform(os) == "Windows NT"} {
	    append path "$windir/system32;"
	}
	append path "$windir/system;$windir;"
    }

    if {[info exists env(PATH)]} {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人av在线播放网站| 日本成人在线电影网| 久久久精品国产免大香伊| 欧美一区二区免费观在线| 91精品国产欧美一区二区18| 91精品国产欧美日韩| 欧美一区二区三区视频免费| 日韩一级片网址| 精品国精品国产尤物美女| 亚洲精品一区二区三区在线观看| 精品国产乱码久久久久久闺蜜| 国产视频一区在线观看| 国产精品丝袜91| 亚洲第一在线综合网站| 秋霞成人午夜伦在线观看| 国产在线视视频有精品| 97精品国产97久久久久久久久久久久| 成人午夜免费电影| 一本大道综合伊人精品热热 | 亚洲欧美日韩精品久久久久| 亚洲精品亚洲人成人网| 亚洲v日本v欧美v久久精品| 精品在线一区二区三区| a美女胸又www黄视频久久| 在线观看亚洲专区| 亚洲精品一区二区三区蜜桃下载| 国产精品午夜在线| 三级久久三级久久久| 成人久久18免费网站麻豆 | 日韩av不卡在线观看| 极品少妇一区二区| 色综合视频一区二区三区高清| 欧美日韩精品福利| 国产亚洲欧美色| 亚洲大片免费看| 国产精品1区2区3区| 欧美日本在线视频| 欧美国产精品久久| 奇米影视在线99精品| 91网站最新网址| 精品国产乱码久久久久久浪潮| 一区二区三区国产精华| 国产精品一区二区x88av| 91黄色免费版| 国产精品久久免费看| 免费成人在线观看| 日本久久一区二区三区| 国产女人aaa级久久久级| 日韩电影在线观看电影| 色综合久久九月婷婷色综合| 精品国产乱码久久久久久图片| 亚洲国产视频一区| 99久久婷婷国产综合精品电影| 日韩欧美一级精品久久| 亚洲电影视频在线| 97se狠狠狠综合亚洲狠狠| 久久免费电影网| 免费成人在线影院| 555夜色666亚洲国产免| 夜夜嗨av一区二区三区| 成人福利电影精品一区二区在线观看| 日韩欧美中文一区| 日韩国产欧美视频| 欧美一区二区三区在线观看视频| 洋洋av久久久久久久一区| 99精品在线免费| 1024成人网色www| 成人免费高清视频| 国产精品看片你懂得| k8久久久一区二区三区| 中文字幕免费不卡在线| 粉嫩欧美一区二区三区高清影视 | 国产精品18久久久| 久久这里只有精品视频网| 麻豆国产精品视频| 精品免费一区二区三区| 国内精品久久久久影院一蜜桃| 欧美一级国产精品| 久久99久久99精品免视看婷婷| 欧美不卡一区二区三区四区| 乱中年女人伦av一区二区| 亚洲精品在线网站| 国产精品12区| 亚洲男人的天堂av| 欧美色男人天堂| 日产国产高清一区二区三区| 日韩欧美国产精品一区| 国产激情一区二区三区| 亚洲欧美一区二区在线观看| 99视频精品免费视频| 亚洲欧美一区二区久久| 在线观看精品一区| 日韩av不卡一区二区| 精品国产乱码久久久久久蜜臀| 韩国理伦片一区二区三区在线播放| 国产欧美视频一区二区| 91九色最新地址| 日本强好片久久久久久aaa| 精品久久国产97色综合| 成人一区二区三区| 亚洲一级二级在线| 日韩精品一区二区三区视频 | 午夜精品影院在线观看| 日韩限制级电影在线观看| 国产高清精品在线| 亚洲一区二区在线免费观看视频| 欧美一级在线免费| www..com久久爱| 麻豆久久久久久久| 综合激情成人伊人| 日韩欧美在线影院| 色欧美片视频在线观看在线视频| 婷婷成人综合网| 国产精品欧美久久久久无广告 | 国产美女娇喘av呻吟久久| 精品一区二区在线观看| 国内精品在线播放| 在线观看中文字幕不卡| 国内成人精品2018免费看| 亚洲影视资源网| 国产婷婷精品av在线| 欧美日韩国产在线播放网站| 国产成人精品免费网站| 午夜精品福利一区二区三区av| 国产精品私房写真福利视频| 91精品国产黑色紧身裤美女| 色综合久久99| 成人国产一区二区三区精品| 久久aⅴ国产欧美74aaa| 亚洲成人一二三| 一区二区三国产精华液| 日本一区二区高清| 2020国产精品| 欧美一区二区啪啪| 91精品国产乱| 欧美日韩的一区二区| 91黄色免费版| 色综合天天综合色综合av| 成人听书哪个软件好| 另类小说视频一区二区| 日韩电影免费在线看| 午夜国产精品一区| 午夜久久久久久久久久一区二区| 亚洲精品老司机| 亚洲日本免费电影| 1024成人网| 亚洲精品高清在线| 亚洲综合久久久| 亚洲影视在线播放| 午夜欧美一区二区三区在线播放| 亚洲日本一区二区| 一区二区三区在线播放| 亚洲综合免费观看高清完整版| 亚洲精品视频在线看| 中文字幕综合网| 亚洲最新视频在线观看| 一区二区三区精密机械公司| 亚洲午夜免费电影| 五月婷婷欧美视频| 免费的国产精品| 国产一区二区三区免费在线观看| 激情偷乱视频一区二区三区| 国产福利一区二区三区视频| 成人精品亚洲人成在线| 99精品久久免费看蜜臀剧情介绍| av电影天堂一区二区在线观看| caoporn国产精品| 欧美私人免费视频| 日韩精品一区二区三区在线| 久久理论电影网| 综合激情成人伊人| 日韩高清欧美激情| 国产精品亚洲成人| 色综合久久九月婷婷色综合| 欧美精品1区2区| 国产亚洲一本大道中文在线| 亚洲欧美电影一区二区| 亚洲国产中文字幕| 国产乱码精品一区二区三| 99久久婷婷国产| 欧美一区二区不卡视频| 中文在线一区二区| 亚洲高清视频中文字幕| 国内精品在线播放| 91极品视觉盛宴| 国产网红主播福利一区二区| 亚洲精品久久久久久国产精华液| 日韩激情在线观看| 成人精品在线视频观看| 欧美精品久久99久久在免费线| www激情久久| 亚洲一区二区在线播放相泽| 国产精品99久| 在线不卡中文字幕播放| 国产日韩欧美一区二区三区乱码| 亚洲一区免费视频| 国产成a人亚洲精品| 欧美电影一区二区| 自拍偷拍亚洲综合| 国产一区二区三区|