win7下安装emacs 24.1问题汇总

2024-05-12 06:08

本文主要是介绍win7下安装emacs 24.1问题汇总,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.ecb加载时显示if: Symbol's value as variable is void: stack-trace-on-error,使用
(setq stack-trace-on-error nil)屏蔽,就可以进入ecb了
从网上搜了下,除了这个问题还有两个问题,好像cedet-1.1正式版都修改了,也放在这备忘

a.  cedet最新版本为1.1beta,提示cedet-called-interactively-p的参数有问题
  在cedet载入之前
  (setq byte-compile-warnings nil)
b. ecb加载的时候显示错误信息,用下列语句屏蔽掉
  (setq stack-trace-on-error nil)
c. ecb提示只兼容cedet版本 1.0.6pre ~ 1.0.9
  在ecb最新版本中找到ecb-cedet-wrapper.el文件,第83行,将最高版本信息改写一下,比如改为如下
  (defconst ecb-cedet-required-version-max '(1 1 4 9)...
另外,对于版本兼容问题,还可以修改ecb-2.40/ecb-updata.el中ecb-check-requirements
的;; check if vedet-version is correct
      ;; (when (or (not (boundp 'cedet-version))
      ;;           (ecb-package-version-list<
      ;;            (ecb-package-version-str2list cedet-version)
      ;;            ecb-required-cedet-version-min)
      ;;           (ecb-package-version-list<
      ;;            ecb-required-cedet-version-max
      ;;            (ecb-package-version-str2list cedet-version)))
      ;;   (setq version-error (concat "cedet ["
      ;;                               cedet-required-version-str-min
      ;;                               ", "
      ;;                               cedet-required-version-str-max
      ;;                               "]")))
注释掉

2.cscope不能使用cscope-indexer,用cscope-indexer.py替代。
将cscope-indexer.py拷贝到的d:/emacs-24.1/bin下(目录可以变换,由修改的xscope.el
中的路径决定)。
修改xscope.el的cscope-unix-index-files-internal
(defun cscope-unix-index-files-internal (top-directory header-text args)
  "Core function to call the indexing script."
  (let ()
    (save-excursion
      (setq top-directory (cscope-canonicalize-directory top-directory))
      (setq cscope-unix-index-process-buffer
   (get-buffer-create cscope-unix-index-process-buffer-name))
      (display-buffer cscope-unix-index-process-buffer)
      (set-buffer cscope-unix-index-process-buffer)
      (setq buffer-read-only nil)
      (setq default-directory top-directory)
      (buffer-disable-undo)
      (erase-buffer)
      (if header-text
 (insert header-text))
      (setq args (append args
(list "-v"
      "-i" cscope-index-file
      "-f" cscope-database-file
      (if cscope-use-relative-paths
  "." top-directory))))
      (if cscope-index-recursively
 (setq args (cons "-r" args)))
      (setq args (cons "d:/emacs-24.1/bin/cscope-indexer.py" args));;修改的
      (setq cscope-unix-index-process
   (apply 'start-process "cscope-indexer"
  cscope-unix-index-process-buffer
  ;;cscope-indexing-script 
           "c:/python27/python" args));;修改的
      (set-process-sentinel cscope-unix-index-process
   'cscope-unix-index-files-sentinel)
      (process-kill-without-query cscope-unix-index-process)
      )
    ))
这个python脚本会生成cscope.files并最终调用cscope生成cscope.out文件,但是这个脚本
有点小问题,需要修改一下,见下面的原脚本源码:
import getopt
import sys
import os
import re


def usage( ):
    print( "cscope-indexer [ -v ] [-f database_file ] [-i list_file ] [ -l ] [ -r ]" )
    pass
    


def listRecurse( rootDir, reg, fileName ):
    fp = open( fileName, 'w' )
    for root, dirs, files in os.walk( rootDir ):
        for file in files :
            if reg.search(file) != None :
                fp.write( os.path.join( root, file ) )#这里少了空格,这样生成的
    cscope.files会不能识别
    fp.close()
    pass


def lisrNoRecurse( rootDir, reg, fileName ):
    fp = open( fileName, 'w' )
    for file in os.listdir( rootDir ) :
        if reg.search(file) != None :
            fp.write( os.path.join( rootDir, file ) )#同上
    fp.close()
    pass




if __name__ == '__main__':
    databaseFile = "cscope.out"
    listFile = "cscope.files"
    listOnly = False
    recurse = False
    verbose = False
    dir = "."
    try:
        opts,args=getopt.getopt(sys.argv[1:],'vf:i:lr')
        for flag,data in opts :
            if flag == "-v":
                verbose = True
            elif flag == "-f":
                if data == "":
                    usage()
                    os.system.exit()
                else:
                    databaseFile = data
            elif flag == "-i":
                if data == "":
                    usage()
                    os.system.exit()
                else:
                    listFile = data
            elif flag == "-l":#这里如果使用C-c s L传进来的参数是L但是windows会
    认成l,这样listOnly就True了,就不会生成cscope.out修改低下的代码
                listOnly = True
            elif flag == "-r":
                recurse = True
            else:
                usage()
                os.system.exit()
        if len(args) != 0:
            dir = args[0]
    except getopt.GetoptError:
        usage()
        os.system.exit()
    if verbose == True:
        print( "Creating list of files to index ..." ) 
    os.chdir( dir )
    reg = re.compile('\.([chly](xx|pp)*|cc|hh)$')
    if recurse == False :
        lisrNoRecurse( dir, reg, listFile )
    else:
        listRecurse( dir, reg, listFile )
    if verbose == True:
        print( "Creating list of files to index ... done" )
    if listOnly == True :;;上面说到的那个问题,简单注释掉吧,这个脚本的功能和
    cscope的定义有稍许区别
        os.system.exit()
    if verbose == True :
        print( "Indexing files ..." )
    os.system( "cscope -b -i "+listFile+" -f "+databaseFile )
    if verbose == True :
        print( "Indexing files ... done" )
    
    pass
修改后就可以使用了。打开一个源码文件,C-c s L或者C-c s I试一下,呵呵

这篇关于win7下安装emacs 24.1问题汇总的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/981802

相关文章

Redis连接失败:客户端IP不在白名单中的问题分析与解决方案

《Redis连接失败:客户端IP不在白名单中的问题分析与解决方案》在现代分布式系统中,Redis作为一种高性能的内存数据库,被广泛应用于缓存、消息队列、会话存储等场景,然而,在实际使用过程中,我们可能... 目录一、问题背景二、错误分析1. 错误信息解读2. 根本原因三、解决方案1. 将客户端IP添加到Re

详谈redis跟数据库的数据同步问题

《详谈redis跟数据库的数据同步问题》文章讨论了在Redis和数据库数据一致性问题上的解决方案,主要比较了先更新Redis缓存再更新数据库和先更新数据库再更新Redis缓存两种方案,文章指出,删除R... 目录一、Redis 数据库数据一致性的解决方案1.1、更新Redis缓存、删除Redis缓存的区别二

oracle数据库索引失效的问题及解决

《oracle数据库索引失效的问题及解决》本文总结了在Oracle数据库中索引失效的一些常见场景,包括使用isnull、isnotnull、!=、、、函数处理、like前置%查询以及范围索引和等值索引... 目录oracle数据库索引失效问题场景环境索引失效情况及验证结论一结论二结论三结论四结论五总结ora

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

element-ui下拉输入框+resetFields无法回显的问题解决

《element-ui下拉输入框+resetFields无法回显的问题解决》本文主要介绍了在使用ElementUI的下拉输入框时,点击重置按钮后输入框无法回显数据的问题,具有一定的参考价值,感兴趣的... 目录描述原因问题重现解决方案方法一方法二总结描述第一次进入页面,不做任何操作,点击重置按钮,再进行下

mac安装redis全过程

《mac安装redis全过程》文章内容主要介绍了如何从官网下载指定版本的Redis,以及如何在自定义目录下安装和启动Redis,还提到了如何修改Redis的密码和配置文件,以及使用RedisInsig... 目录MAC安装Redis安装启动redis 配置redis 常用命令总结mac安装redis官网下

解决mybatis-plus-boot-starter与mybatis-spring-boot-starter的错误问题

《解决mybatis-plus-boot-starter与mybatis-spring-boot-starter的错误问题》本文主要讲述了在使用MyBatis和MyBatis-Plus时遇到的绑定异常... 目录myBATis-plus-boot-starpythonter与mybatis-spring-b

Java 枚举的常用技巧汇总

《Java枚举的常用技巧汇总》在Java中,枚举类型是一种特殊的数据类型,允许定义一组固定的常量,默认情况下,toString方法返回枚举常量的名称,本文提供了一个完整的代码示例,展示了如何在Jav... 目录一、枚举的基本概念1. 什么是枚举?2. 基本枚举示例3. 枚举的优势二、枚举的高级用法1. 枚举

mysql主从及遇到的问题解决

《mysql主从及遇到的问题解决》本文详细介绍了如何使用Docker配置MySQL主从复制,首先创建了两个文件夹并分别配置了`my.cnf`文件,通过执行脚本启动容器并配置好主从关系,文中还提到了一些... 目录mysql主从及遇到问题解决遇到的问题说明总结mysql主从及遇到问题解决1.基于mysql

如何测试计算机的内存是否存在问题? 判断电脑内存故障的多种方法

《如何测试计算机的内存是否存在问题?判断电脑内存故障的多种方法》内存是电脑中非常重要的组件之一,如果内存出现故障,可能会导致电脑出现各种问题,如蓝屏、死机、程序崩溃等,如何判断内存是否出现故障呢?下... 如果你的电脑是崩溃、冻结还是不稳定,那么它的内存可能有问题。要进行检查,你可以使用Windows 11