From patchwork Sat Apr 26 20:16:03 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 688 Return-Path: X-Original-To: siddhesh@wilcox.dreamhost.com Delivered-To: siddhesh@wilcox.dreamhost.com Received: from homiemail-mx20.g.dreamhost.com (mx2.sub5.homie.mail.dreamhost.com [208.113.200.128]) by wilcox.dreamhost.com (Postfix) with ESMTP id D6FC6360072 for ; Sat, 26 Apr 2014 13:16:14 -0700 (PDT) Received: by homiemail-mx20.g.dreamhost.com (Postfix, from userid 14314964) id 910D541315F7E; Sat, 26 Apr 2014 13:16:14 -0700 (PDT) X-Original-To: gdb@patchwork.siddhesh.in Delivered-To: x14314964@homiemail-mx20.g.dreamhost.com Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by homiemail-mx20.g.dreamhost.com (Postfix) with ESMTPS id 5CC3E41315F59 for ; Sat, 26 Apr 2014 13:16:14 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=gI9WBB+5Mai+5GrvIyOPljonk2u8g K1d02r/DDM3czyGoqoA8oWoQDf71MI/eEI51MqW3wL4m/kgclSwllTtC+H+JBTIi j6fKCdlAEuRiV/rzFtKv1KI0uBH2QzkxdDQuHHLVhZjAKubHQf6c1uqNCIlgMoOk 5KOS2Uh3kJxUfc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=7mWcPxkSpvgfLm4L/sggFQR2hy8=; b=gAR O0DZOYYdGw8DYUnwcoXyL27NNDcsJ9kW0opzOKjIYVz6d4RpjrL0Imljqks6Bvo2 loz8YdUZDk0Uexu4kI+Tj9lE1HyEJpB/5UCtOTSO7GD4qWtMQaNe1keIuvjR1DTm eKVUh+1ONqW4+sX5c6PIZFwOH8r+rU96wHmy/PsY= Received: (qmail 22284 invoked by alias); 26 Apr 2014 20:16:12 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 22266 invoked by uid 89); 26 Apr 2014 20:16:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f50.google.com Received: from mail-pa0-f50.google.com (HELO mail-pa0-f50.google.com) (209.85.220.50) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sat, 26 Apr 2014 20:16:10 +0000 Received: by mail-pa0-f50.google.com with SMTP id rd3so4345187pab.23 for ; Sat, 26 Apr 2014 13:16:08 -0700 (PDT) X-Received: by 10.66.122.1 with SMTP id lo1mr16096082pab.118.1398543368208; Sat, 26 Apr 2014 13:16:08 -0700 (PDT) Received: from sspiff.sspiff.org.gmail.com (173-13-178-53-sfba.hfc.comcastbusiness.net. [173.13.178.53]) by mx.google.com with ESMTPSA id pe3sm24434311pbc.23.2014.04.26.13.16.07 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 26 Apr 2014 13:16:07 -0700 (PDT) From: Doug Evans To: gdb-patches@sourceware.org Subject: [commit] guile/scm-safe-call.c (scscm_eval_scheme_string): Fix comment Date: Sat, 26 Apr 2014 13:16:03 -0700 Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes X-DH-Original-To: gdb@patchwork.siddhesh.in Hi. fyi, I committed this. 2014-04-26 Doug Evans * guile/scm-safe-call.c (scscm_eval_scheme_string): Fix comment. diff --git a/gdb/guile/scm-safe-call.c b/gdb/guile/scm-safe-call.c index 147d7f5..2a69a4f 100644 --- a/gdb/guile/scm-safe-call.c +++ b/gdb/guile/scm-safe-call.c @@ -364,7 +364,7 @@ struct eval_scheme_string_data }; /* Wrapper to eval a C string in the Guile interpreter. - This is passed to scm_with_guile. */ + This is passed to gdbscm_with_guile. */ static void * scscm_eval_scheme_string (void *datap)