scheme-send-definition和scheme-send-last-sexp之间有什么区别

时间:2015-09-15 12:50:32

标签: emacs scheme elisp

似乎scheme-send-definition和scheme-send-last-sexp在gnu emacs中的工作结果相同。它们之间有什么区别?

1 个答案:

答案 0 :(得分:3)

[System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)] static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent); [System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)] static extern IntPtr FindWindowEx(IntPtr hP, IntPtr hC, string sC, string sW); void MakeWin() { IntPtr nWinHandle = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Progman", null); nWinHandle = FindWindowEx(nWinHandle, IntPtr.Zero, "SHELLDLL_DefView", null); SetParent(Handle, nWinHandle); } 发送当前定义;一点位于。
scheme-send-definition在紧接前一点发送s表达式。